forked from dennis-kurochkin/servicepro-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.52 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
{
"name": "servicepro-web",
"private": true,
"version": "0.0.0",
"type": "commonjs",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"api:main": "sta -p src/api/schema.json -o src/api -n servicepro.generated.ts --axios --add-readonly --extract-request-body --extract-request-params --extract-response-body",
"api:chat": "sta -p src/api/chat.schema.json -o src/api -n servicepro-chat.generated.ts --axios --add-readonly --extract-request-body --extract-request-params --extract-response-body",
"api": "npm run api:main; npm run api:chat"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.16",
"@mui/lab": "^5.0.0-alpha.152",
"@mui/material": "^5.14.17",
"@mui/x-data-grid": "^6.18.1",
"@mui/x-date-pickers": "^6.18.1",
"@popperjs/core": "^2.11.8",
"@react-hook/resize-observer": "^2.0.1",
"@react-hook/throttle": "^2.2.0",
"@tanstack/react-query": "^5.35.1",
"@tippyjs/react": "^4.2.6",
"@types/qs": "^6.9.15",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@types/react-scroll": "^1.8.10",
"@types/uuid": "^10.0.0",
"@uidotdev/usehooks": "^2.4.1",
"axios": "^1.6.5",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
"leaflet": "^1.9.4",
"notistack": "^3.0.1",
"qs": "^6.13.0",
"ramda": "^0.29.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-geolocated": "^4.1.2",
"react-hook-form": "^7.48.2",
"react-i18next": "^14.1.2",
"react-infinite-scroll-hook": "^4.1.1",
"react-leaflet": "^4.2.1",
"react-router-dom": "^6.18.0",
"react-scroll": "^1.9.0",
"react-use-websocket": "^4.8.1",
"swagger-typescript-api": "^13.0.3",
"uuid": "^10.0.0",
"zustand": "^4.5.4"
},
"devDependencies": {
"@types/leaflet": "^1.9.8",
"@types/ramda": "^0.29.8",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.3",
"eslint": "^8.45.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-no-relative-import-paths": "^1.5.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-unused-imports": "^3.0.0",
"hygen": "^6.2.11",
"typescript": "^5.0.2",
"vite": "^4.5.1"
}
}