-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 2.12 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "cherry-front",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/cherrypick-project/cherry-front.git",
"author": "cherryPick-frontend",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/runtime-corejs3": "^7.17.2",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-console": "^1.2.3",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-interactions": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/react": "^6.4.19",
"@storybook/testing-library": "^0.0.9",
"babel-loader": "^8.2.3",
"babel-plugin-styled-components": "^2.0.6",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"chromatic": "^6.5.3",
"core-js": "^3.21.1",
"css-loader": "^6.7.0",
"cypress": "^9.5.1",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-import": "^2.25.4",
"file-loader": "^6.2.0",
"html-loader": "^3.1.0",
"html-webpack-plugin": "^5.5.0",
"json-server": "^0.17.0",
"mini-css-extract-plugin": "^2.6.0",
"msw": "^0.42.0",
"msw-storybook-addon": "^1.6.3",
"regenerator-runtime": "^0.13.9",
"storybook-dark-mode": "^1.0.9",
"styled-components": "^5.3.3",
"url-loader": "^4.1.1",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"scripts": {
"dev": "webpack serve --mode development",
"build": "webpack --mode production",
"sb": "export NODE_OPTIONS=--openssl-legacy-provider && start-storybook -p 6006 -s public",
"build-storybook": "build-storybook",
"chromatic": "npx chromatic --project-token=580522ea1c4d"
},
"dependencies": {
"axios": "^0.26.0",
"qs": "^6.11.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-query": "^3.34.16",
"react-router-dom": "^6.2.2",
"styled-reset": "^4.3.4"
},
"msw": {
"workerDirectory": "public"
}
}