-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 2.43 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
{
"name": "nexpo",
"version": "0.1.0",
"private": true,
"proxy": "http://localhost:4000",
"dependencies": {
"antd": "^3.10.1",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"node-sass-chokidar": "^1.3.4",
"normalizr": "^3.3.0",
"npm-run-all": "^4.1.3",
"react": "^16.5.2",
"react-csv": "^1.0.18",
"react-dom": "^16.5.2",
"react-helmet": "^5.2.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-scripts": "^2.1.8",
"react-test-renderer": "^16.5.2",
"redux": "^4.0.1",
"redux-form": "^7.4.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"rxjs-compat": "^6.5.3",
"victory": "^30.5.0",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-flowtype": "^2.50.3",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"flow-bin": "^0.84.0",
"flow-typed": "^2.5.1",
"nock": "^10.0.1",
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^4.7.1",
"redux-mock-store": "^1.5.3"
},
"peerDependencies": {
"jest": "23.6.x"
},
"scripts": {
"build-css": "node-sass-chokidar --include-path ./src src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"eslint": "eslint \"src/**/*.js\"",
"lint": "prettier-eslint \"src/**/*.js\"",
"lint-fix": "prettier-eslint --write \"src/**/*.js\"",
"flow": "flow",
"flow-typed": "flow-typed",
"flow-coverage": "flow coverage",
"build": "npm run build-css && react-scripts build",
"test": "npm run test-ci",
"test-js": "npm run flow && react-scripts test",
"test-watch": "npm-run-all -p watch-css test-js",
"test-ci": "npm run build-css && CI=true npm run test-js",
"test-coverage": "npm run test-js -- --coverage",
"eject": "react-scripts eject",
"postinstall": "npx flow-typed install && npx flow-typed create-stub whatwg-fetch && npx flow-typed create-stub antd && npx flow-typed create-stub redux-form"
},
"engines": {
"node": "11.9.0",
"npm": ">6.9.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}