-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
52 lines (52 loc) · 1.33 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "nextjs-msw-example",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"test": "jest",
"storybook": "start-storybook -s public -p 6006",
"build-storybook": "build-storybook",
"format": "prettier --write \"src/**/*.tsx\""
},
"license": "MIT",
"dependencies": {
"msw": "^0.24.2",
"next": "latest",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"swr": "^0.4.2"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/preset-env": "^7.13.9",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0",
"@storybook/addon-actions": "^6.1.21",
"@storybook/addon-essentials": "^6.1.21",
"@storybook/addon-links": "^6.1.21",
"@storybook/react": "^6.1.21",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.31",
"@types/react": "^17.0.2",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"jest": "^26.6.3",
"prettier": "^2.0.5",
"prettier-plugin-organize-imports": "^1.1.1",
"typescript": "^4.2.3",
"whatwg-fetch": "^3.6.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "babel-jest"
},
"automock": false,
"setupFiles": [
"./jest.setup.js"
]
}
}