-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.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
{
"name": "accelerator",
"version": "0.0.1",
"private": true,
"devDependencies": {
"custom-react-scripts": "^0.2.1",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-react": "^6.10.3",
"eslint-watch": "^3.1.0",
"husky": "^0.13.3",
"lint-staged": "^3.4.0",
"prettier": "^1.2.2",
"react-test-renderer": "^15.5.4"
},
"dependencies": {
"lodash": "^4.17.10",
"node-sass": "^4.5.3",
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-addons-css-transition-group": "^15.5.2",
"react-addons-transition-group": "^15.5.2",
"react-dom": "^15.5.4",
"react-md": "^1.0.13",
"react-redux": "^5.0.3",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"react-router-redux": "^5.0.0-alpha.8",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"victory": "^0.26.1",
"webfontloader": "^1.6.27"
},
"scripts": {
"build": "npm run lint && npm run test:once && react-scripts build",
"eject": "react-scripts eject",
"precommit": "lint-staged",
"start": "react-scripts start",
"lint": "eslint src/**/*.js",
"lint:watch": "esw -w src/**/*.js",
"test": "react-scripts test --env=jsdom",
"test:once": "CI=true react-scripts test --env=jsdom"
},
"lint-staged": {
"{src,__{test|mocks}__}/**/*.js": [
"prettier --single-quote --trailing-comma es5 --write",
"git add"
]
}
}