-
Notifications
You must be signed in to change notification settings - Fork 811
/
package.json
38 lines (38 loc) · 896 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
35
36
37
38
{
"name": "redux-essentials-example",
"version": "2.0.0",
"private": true,
"dependencies": {
"@faker-js/faker": "^8",
"@mswjs/data": "^0.16",
"@reduxjs/toolkit": "^2.2",
"classnames": "^2.2.6",
"date-fns": "^3",
"mock-socket": "^9.0.3",
"msw": "^2",
"react": "^18",
"react-dom": "^18",
"react-redux": "^9",
"react-router-dom": "^6",
"react-tiny-toast": "^2.0.1"
},
"scripts": {
"dev": "vite",
"start": "vite",
"build": "tsc && vite build",
"format": "prettier --write ./src/**/*.{ts,tsx,css}"
},
"devDependencies": {
"@types/node": "^20.11.6",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react": "^4.2.1",
"prettier": "^3.2.1",
"typescript": "^5.4",
"vite": "^5.0.11"
},
"msw": {
"workerDirectory": "public"
},
"packageManager": "[email protected]"
}