-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 777 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 777 Bytes
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
{
"name": "react-state-lab",
"version": "0.1.0",
"private": true,
"type": "module",
"dependencies": {
"axios": "^1.19.0",
"date-fns": "^3.6.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-dropzone": "^14.2.3",
"react-router-dom": "^7.18.2",
"react-toastify": "^10.0.5"
},
"devDependencies": {
"@vitejs/plugin-react": "^6.0.5",
"sass": "^1.102.0",
"vite": "^8.2.1"
},
"scripts": {
"dev": "vite",
"start": "vite",
"build": "vite build",
"preview": "vite preview"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}