-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
97 lines (97 loc) · 2.94 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "nachet-frontend",
"private": true,
"version": "0.9.4",
"type": "module",
"scripts": {
"dev": "vite",
"prestart": "ts-appversion",
"prebuild": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0 && tsc",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "vitest",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.16.7",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.1",
"@mui/material": "^5.14.1",
"@saithodev/ts-appversion": "^2.2.0",
"@testing-library/jest-dom": "^5.16.5",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"axios": "^1.6.0",
"browser-image-compression": "^2.0.2",
"express": "^4.18.2",
"file-saver": "^2.0.5",
"js-base64": "^3.7.7",
"js-cookie": "^3.0.5",
"jszip": "^3.10.1",
"jwt-decode": "^4.0.0",
"pako": "^2.1.0",
"re-resizable": "^6.9.16",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.6",
"react-icons": "^4.10.1",
"react-picture-annotation": "^1.2.0",
"react-router-dom": "^6.14.1",
"react-webcam": "^7.1.1",
"styled-components": "^6.0.3",
"utif": "^3.1.0",
"uuid": "^9.0.0",
"web-vitals": "^2.1.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/preset-env": "^7.24.3",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@testing-library/react": "^14.2.2",
"@testing-library/user-event": "^14.5.2",
"@types/file-saver": "^2.0.7",
"@types/js-cookie": "^3.0.6",
"@types/node": "^20.11.29",
"@types/pako": "^2.0.3",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@types/utif": "^3.0.5",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"@vitejs/plugin-react-swc": "^3.5.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"identity-obj-proxy": "^3.0.0",
"jest-environment-jsdom": "^29.7.0",
"node-fetch": "^3.3.2",
"typescript": "^5.2.2",
"vite": "^5.2.6",
"vite-plugin-environment": "^1.1.3",
"vitest": "^1.4.0"
},
"engines": {
"npm": "^9.8.1",
"node": "^18.16.0"
}
}