-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.63 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
{
"name": "shici",
"description": "shici project by youling",
"version": "0.1.0",
"author": "youlingling",
"dependencies": {
"prop-types": "^15.6.2",
"react": "^16.5.1",
"react-dom": "^16.5.1",
"react-redux": "^5.1.1",
"react-router-dom": "^4.3.1",
"react-scripts": "^1.1.5",
"recompose": "^0.30.0",
"redux": "^4.0.0",
"redux-actions": "^2.6.1",
"redux-devtools-extension": "^2.13.2",
"redux-saga": "^0.16.2",
"redux-thunk": "^2.3.0",
"reselect": "^3.0.1",
"styled-components": "^3.4.6"
},
"devDependencies": {
"babel-eslint": "^8.0.2",
"eslint": "^4.10.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.4.0",
"husky": "^0.14.3",
"node-plop": "^0.5.5",
"plop": "^1.7.4",
"prettier": "^1.14.2",
"pretty-quick": "^1.6.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"format": "prettier --write '**/*.{js,jsx,json,md}'",
"format:changed": "pretty-quick",
"format:staged": "pretty-quick --staged",
"eslint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"lint": "eslint **/*.js --quiet",
"lint-fix": "eslint --fix",
"generate": "plop --plopfile generators/index.js"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"engines": {
"npm": ">=4",
"node": ">=6"
}
}