-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
61 lines (61 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
60
61
{
"name": "react-snake-game",
"version": "0.1.0",
"private": true,
"dependencies": {
"@avinlab/react-flash-change": "^1.1.0",
"classnames": "^2.2.6",
"immutable": "^4.0.0-rc.12",
"node-sass": "^4.11.0",
"normalize.css": "^8.0.1",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-redux": "^6.0.0",
"react-scripts": "2.1.2",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0"
},
"scripts": {
"dev": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"prettier": "prettier-eslint --write \"src/**/*.{js,json,css}\"",
"lint": "eslint src/**/*.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"src/**/*.{js,json,css,md}": [
"prettier-eslint --write",
"git add"
],
"src/**/*.js": "eslint --max-warnings 0"
},
"concurrent": false
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"homepage": ".",
"devDependencies": {
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-sonarjs": "^0.2.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^4.7.1"
}
}