-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
55 lines (55 loc) · 1.59 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
{
"name": "todo-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"@zeal/react-scripts": "^2.0.0",
"babel-polyfill": "^6.23.0",
"classnames": "^2.2.5",
"empty": "^0.10.1",
"enzyme": "^2.8.2",
"eslint": "3.19.0",
"eslint-config-prettier": "^2.1.1",
"history": "^4.6.1",
"husky": "^0.13.3",
"lint-staged": "^3.5.0",
"material-design-icons": "^3.0.1",
"npm-run-all": "^4.0.2",
"prettier": "^1.3.1",
"ramda": "^0.23.0",
"react": "^15.5.4",
"react-apollo": "^1.2.0",
"react-css-themr": "^2.0.0",
"react-dom": "^15.5.4",
"react-hotkeys": "^0.10.0",
"react-redux": "^5.0.4",
"react-router-dom": "^4.1.1",
"react-test-renderer": "^15.5.4",
"react-toolbox": "^1.3.1",
"react-transition-group": "^1.1.3",
"redux": "^3.6.0",
"redux-devtools-extension": "^2.13.2",
"roboto-fontface": "^0.7.0",
"sass-lint": "^1.10.2",
"zeal-redux-utils": "^1.0.0"
},
"scripts": {
"build": "react-scripts build",
"eject": "react-scripts eject",
"format": "prettier --write 'client/**/*.js'",
"lint": "npm-run-all --parallel lint:*",
"lint:js": "react-scripts lint --max-warnings 0",
"lint:sass": "sass-lint -v --max-warnings 0",
"postinstall": "npm run build",
"precommit": "lint-staged",
"start": "react-scripts start",
"test": "CI=true react-scripts test --env=jsdom --coverage",
"test:watch": "react-scripts test --env=jsdom",
"validate": "npm-run-all --parallel lint test"
},
"lint-staged": {
"linters": {
"*.js": "prettier --list-different"
}
}
}