-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.55 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
{
"name": "nexpo-web",
"version": "0.1.0",
"private": true,
"proxy": "http://localhost:4000",
"dependencies": {
"@ant-design/icons": "^4.6.2",
"@ant-design/compatible": "^1.0.8",
"antd": "^4.16.6",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"normalizr": "^3.6.1",
"react": "^16.13.1",
"react-csv": "^2.0.3",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-redux": "^6.0.1",
"react-router-dom": "^5.2.0",
"redux": "^4.0.1",
"redux-form": "^8.3.6",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"rxjs-compat": "^6.6.7",
"victory": "^35.9.0",
"whatwg-fetch": "^3.6.2"
},
"devDependencies": {
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-flowtype": "^5.7.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"flow-bin": "^0.148.0",
"flow-typed": "^3.3.1",
"node-sass-chokidar": "^1.5.0",
"npm-run-all": "^4.1.5",
"prettier-eslint": "^12.0.0",
"prettier-eslint-cli": "^5.0.1",
"react-scripts": "4.0.3",
"react-test-renderer": "^16.13.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": "yarn 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 \"$PWD/src/**/*.js\"",
"lint-fix": "prettier-eslint --write \"$PWD/src/**/*.js\"",
"flow": "flow",
"flow-typed": "flow-typed",
"flow-coverage": "flow coverage",
"build": "yarn run build-css && react-scripts build",
"test": "yarn run test-ci",
"test-js": "yarn run flow && react-scripts test",
"test-watch": "npm-run-all -p watch-css test-js",
"test-ci": "yarn run build-css && yarn run test-js --watchAll=false",
"test-coverage": "yarn 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": ">=12.0.0",
"npm": ">6.9.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}