-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
77 lines (77 loc) · 2.53 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
68
69
70
71
72
73
74
75
76
77
{
"name": "c2w-site-front",
"version": "0.1.0",
"private": true,
"dependencies": {
"antd": "^2.13.7",
"axios": "^0.21.1",
"babel-polyfill": "^6.26.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"bluebird": "^3.7.2",
"eslint-plugin-jsx-a11y": "6.3.1",
"file-saver": "^2.0.2",
"husky": "^4.2.5",
"lodash.sortby": "^4.7.0",
"moment": "^2.27.0",
"nyc": "^15.1.0",
"prop-types": "^15.6.0",
"query-string": "^6.13.1",
"react": "^16.13.1",
"react-animated-number": "^0.4.4",
"react-burger-menu": "^2.7.0",
"react-dom": "^16.13.1",
"react-intl": "^5.3.2",
"react-redux": "^7.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1",
"react-scroll": "^1.8.0",
"recharts": "^1.8.5",
"redux": "^4.0.5",
"redux-localstorage-simple": "^2.2.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"styled-components": "^5.1.1"
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@staticdeploy/app-server": "^4.1.0",
"@staticdeploy/mock-server": "^2.0.0",
"babel-plugin-rewire": "^1.1.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chance": "^1.1.7",
"cross-env": "^7.0.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.4",
"eslint-config-react-app": "^5.2.1",
"eslint-loader": "4.0.2",
"eslint-plugin-flowtype": "5.2.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-react": "7.21.2",
"prettier": "^2.0.5",
"pretty-quick": "^3.0.2",
"react-test-renderer": "^16.13.1",
"sinon": "^9.0.3",
"sinon-chai": "^3.5.0"
},
"scripts": {
"format": "prettier --write 'src/**/*.js'",
"start": "react-scripts start",
"netlify": "echo '/* /index.html 200' > build/_redirects",
"build": "react-scripts build && yarn netlify",
"coverage": "nyc npm test",
"lint": "eslint src mock-server --ext .jsx --ext .js",
"test:watch": "react-scripts test --env=jsdom",
"test": "react-scripts test --env=jsdom --coverage",
"mock-server": "mock-server --serveConfig --watch"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}