-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.95 KB
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
{
"name": "create-react-dashboard",
"version": "0.1.0",
"private": true,
"dependencies": {
"@ant-design/compatible": "^1.0.5",
"@ant-design/icons": "^4.2.2",
"@render-props/toggle": "^0.1.30",
"antd": "^4.5.4",
"babel-plugin-import": "^1.13.0",
"customize-cra": "^1.0.0",
"less": "^3.12.2",
"less-loader": "^6.2.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-app-rewired": "^2.1.6",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-router": "^5.2.0",
"react-router-config": "^5.1.1",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.3",
"url-join": "^4.0.1"
},
"devDependencies": {
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.3",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"react-styleguidist": "^11.0.8"
},
"resolutions": {
"is-promise": "2.1.0",
"run-async/is-promise": "2.1.0"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test --coverage --no-cache",
"test:watch": "react-app-rewired test --watch --coverage --no-cache",
"precommit": "NODE_ENV=production lint-staged",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build"
},
"eslintConfig": {
"extends": "react-app"
},
"lint-staged": {
"*.{js,jsx}": [
"pretty-quick --staged",
"eslint src/ --fix",
"git add"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"jest": {
"setupFiles": [
"<rootDir>/__mocks__/matchMediaMock.js"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}