-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
49 lines (49 loc) · 1.25 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
{
"name": "imperial-directive",
"version": "1.9.0",
"private": true,
"dependencies": {
"connected-react-router": "^4.3.0",
"history": "^4.7.2",
"lodash": "^4.17.4",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-scripts": "1.0.16",
"react-svg-arrow": "^0.4.2",
"redux": "^3.7.2",
"redux-saga": "^0.16.0"
},
"scripts": {
"build": "react-scripts build",
"cover": "react-scripts test --env=jsdom --coverage",
"eject": "react-scripts eject",
"flow": "flow check",
"gen-mission": "node ./scripts/gen-mission.js",
"lint": "node node_modules/eslint/bin/eslint.js src/",
"lint-fix": "node node_modules/eslint/bin/eslint.js --fix src/",
"prettier": "prettier --write \"src/**/*.js\"",
"start": "react-scripts start",
"test": "react-scripts test --env=jsdom",
"view-cover": "open coverage/index.html"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-flow": "^6.23.0",
"flow-bin": "0.75.0",
"prettier": "^1.13.7",
"replace-in-file": "^3.4.0"
},
"engines": {
"node": "8.9.4",
"yarn": "1.7.0"
},
"jest": {
"coverageReporters": [
"json",
"lcov",
"html"
]
}
}