-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.4 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
53
{
"name": "jest-msw",
"version": "1.0.0",
"description": "MSW and Jest usage",
"private": true,
"keywords": [
"msw",
"mocking",
"api"
],
"scripts": {
"build": "webpack",
"start": "webpack serve --open",
"test": "jest",
"storybook": "start-storybook -p 6006 -s dist",
"build-storybook": "build-storybook"
},
"msw": {
"workerDirectory": "dist"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/preset-env": "^7.15.0",
"@storybook/addon-actions": "^6.3.7",
"@storybook/addon-essentials": "^6.3.7",
"@storybook/addon-links": "^6.3.7",
"@storybook/builder-webpack5": "^6.3.7",
"@storybook/html": "^6.3.7",
"@storybook/manager-webpack5": "^6.3.7",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.0.6",
"babel-loader": "^8.2.2",
"core-js": "^3.16.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^5.1.0",
"jest": "27.0.6",
"msw": "0.35.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.0.0"
},
"author": "Maxime Bréhin",
"license": "ISC",
"dependencies": {
"cross-fetch": "^3.1.4"
}
}