-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 809 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 809 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
{
"name": "next-msw-example",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "env-cmd -f ./.env.local jest --watch"
},
"dependencies": {
"axios": "^0.21.1",
"clsx": "^1.1.1",
"next": "10.2.0",
"node-fetch": "^2.6.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-modal": "^3.13.1",
"react-toastify": "^7.0.4"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^15.0.2",
"@types/react": "^17.0.5",
"babel-jest": "^26.6.3",
"env-cmd": "^10.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"msw": "^0.28.2",
"sass": "^1.32.12",
"typescript": "^4.2.4"
},
"msw": {
"workerDirectory": "public"
}
}