-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 858 Bytes
/
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
{
"name": "vite-project",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --mode test",
"build": "vite build",
"build:tsc": "tsc && vite build",
"build:prod": "vite build --mode prod",
"build:test": "vite build --mode test",
"preview": "vite preview"
},
"dependencies": {
"@reduxjs/toolkit": "^1.9.3",
"@types/good-storage": "^1.1.0",
"axios": "0.26",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.9.0",
"redux": "^4.2.1"
},
"devDependencies": {
"@types/node": "^18.15.5",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react-swc": "^3.0.0",
"postcss-px-to-viewport": "^1.1.1",
"sass": "^1.59.3",
"typescript": "^4.9.3",
"vite": "^4.2.0"
}
}