-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.12 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": "fl-9-team-project",
"version": "0.1.0",
"private": true,
"dependencies": {
"d3": "^5.7.0",
"firebase": "^5.5.7",
"react": "^16.6.0",
"react-addons-update": "^15.6.2",
"react-dnd": "^6.0.0",
"react-dnd-html5-backend": "^6.0.0",
"react-dom": "^16.6.0",
"react-router-dom": "^4.3.1",
"react-scripts": "2.0.5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"eslintConfig": {
"extends": "react-app",
"rules": {
"jsx-quotes": [
1,
"prefer-double"
]
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"husky": "^1.1.2",
"lint-staged": "^7.3.0",
"node-sass": "^4.9.4",
"prettier": "^1.14.3"
},
"lint-staged": {
"src/**/*.{js, jsx}": [
"node_modules/.bin/eslint --fix --max-warnings=0",
"prettier --config ./.prettierrc --write",
"git add"
]
}
}