-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
66 lines (66 loc) · 1.73 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
{
"name": "carbon-inferno",
"version": "1.0.0",
"private": true,
"dependencies": {
"history": "^4.7.2",
"moment": "2.18.0",
"prop-types": "^15.6.0",
"react": "16.2.0",
"react-dom": "16.2.0",
"react-icons": "^2.2.7",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-router-redux": "next",
"react-svg-coordinates": "1.1.0",
"react-test-renderer": "^16.2.0",
"react-window-size": "^1.0.1",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1",
"throttle-debounce": "^1.0.1",
"universal-ga": "^1.2.0",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"eslint": "^4.12.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-react-app": "^2.0.1",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.5.1",
"fetch-mock": "^5.13.1",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"prettier": "^1.8.2",
"prettier-eslint": "^8.4.0",
"prettier-eslint-cli": "^4.4.2",
"react-scripts": "1.0.17",
"redux-mock-store": "^1.3.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"test:staged": "CI=true react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint": "eslint -c .eslintrc src",
"precommit": "lint-staged",
"prepush": "npm run test:staged"
},
"lint-staged": {
"*.js": [
"eslint",
"prettier-eslint --write",
"git add"
],
"*.css": [
"prettier --write",
"git add"
]
}
}