This repository has been archived by the owner on Mar 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.1 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
78
79
80
81
{
"name": "visualus",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=9.0"
},
"dependencies": {
"antd": "^3.1.0",
"axios": "^0.17.1",
"bizcharts": "^3.1.3-beta.2",
"css-loader": "^0.28.9",
"history": "^4.7.2",
"less-loader": "^4.0.5",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-router-redux": "^4.0.8",
"react-scripts": "1.1.0",
"redux": "^3.7.2",
"redux-saga": "^0.16.0",
"reselect": "^3.0.1",
"style-loader": "^0.20.1"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test --env=jsdom",
"test:debug": "react-app-rewired --inspect-brk test --runInBand --env=jsdom",
"eject": "react-scripts eject",
"precommit": "lint-staged",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --write",
"git add"
]
},
"jest": {
"collectCoverageFrom": [
"!src/index.{js,jsx}",
"!src/registerServiceWorker.{js,jsx}",
"!src/setupTests.{js,jsx}",
"!src/reducer/index.{js,jsx}",
"!src/type/*.js",
"src/**/*.{js,jsx}",
"!src/stories/**",
"!src/**/*.story.{js,jsx}"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
}
},
"devDependencies": {
"@storybook/addon-actions": "^3.2.15",
"@storybook/addon-links": "^3.2.15",
"@storybook/react": "^3.2.15",
"axios-mock-adapter": "^1.10.0",
"babel-plugin-import": "^1.6.3",
"enzyme": "^3.1.1",
"enzyme-adapter-react-16": "^1.0.4",
"flow-bin": "^0.64.0",
"husky": "^0.14.3",
"lint-staged": "^6.1.0",
"prettier": "^1.8.2",
"react-app-rewired": "^1.4.1",
"react-test-renderer": "^16.1.0",
"redux-devtools": "^3.4.1",
"redux-mock-store": "^1.5.1",
"sinon": "^4.1.3",
"storybook": "^1.0.0"
}
}