forked from careerfairsystems/nexpo-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.46 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-web",
"version": "0.1.0",
"private": true,
"proxy": "http://backend: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.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",
"react-scripts": "3.4.3",
"react-test-renderer": "^16.5.2",
"redux": "^4.0.1",
"redux-form": "^8.3.6",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"rxjs-compat": "^6.5.3",
"victory": "^35.0.3",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-flowtype": "^5.2.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.3",
"flow-bin": "0.93.0",
"flow-typed": "^3.2.1",
"prettier-eslint": "^11.0.0",
"prettier-eslint-cli": "^5.0.0",
"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 \"$PWD/src/**/*.js\"",
"lint-fix": "prettier-eslint --write \"$PWD/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": ">=12.0.0",
"npm": ">6.9.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}