-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.48 KB
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
{
"name": "react-project-template",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"dev:local": "VITE_STAGE=local vite",
"dev:dev": "VITE_STAGE=dev vite",
"dev:prod": "VITE_STAGE=prod vite",
"build": "tsc -b && vite build",
"build:local": "VITE_STAGE=local tsc -b && VITE_STAGE=local vite build",
"build:dev": "VITE_STAGE=dev tsc -b && VITE_STAGE=dev vite build",
"build:prod": "VITE_STAGE=prod tsc -b && VITE_STAGE=prod vite build",
"lint": "eslint .",
"preview": "vite preview"
},
"dependencies": {
"@ant-design/icons": "^6.2.5",
"react-oidc-context": "^3.3.1",
"oidc-client-ts": "^3.5.0",
"antd": "^6.4.3",
"i18next": "^26.3.1",
"i18next-http-backend": "^4.0.0",
"moment": "^2.30.1",
"moment-timezone": "^0.6.2",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-i18next": "^17.0.8",
"react-router-dom": "^7.17.0",
"react-use-websocket": "^4.13.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/jest": "^30.0.0",
"@types/node": "^25.9.1",
"@types/react": "^19.2.16",
"@types/react-dom": "^19.2.3",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react-swc": "^4.3.1",
"eslint": "^10.4.1",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.6.0",
"terser": "^5.48.0",
"typescript": "~6.0.3",
"typescript-eslint": "^8.60.1",
"vite": "^8.0.16"
}
}