forked from FAC-Sixteen/RE4.W
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.75 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
{
"name": "re4-w",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/react": "^8.0.1",
"airtable": "^0.6.0",
"dotenv": "^8.0.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-react": "^7.13.0",
"husky": "^2.4.0",
"is-touch-device": "^1.0.1",
"lint-staged": "^8.2.0",
"node-fetch": "^2.6.0",
"prettier": "^1.18.1",
"react": "^16.8.6",
"react-dnd": "^7.6.0",
"react-dnd-html5-backend": "^7.6.0",
"react-dnd-touch-backend": "^0.8.3",
"react-dom": "^16.8.6",
"react-modal": "^3.8.1",
"react-router-dom": "^5.0.1",
"react-scripts": "3.0.1",
"styled-components": "^4.3.1"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
},
"scripts": {
"start": "react-scripts start",
"lint": "eslint '**/*.js'",
"build": "react-scripts test --watchAll=false && react-scripts build",
"format": "prettier --write '**/*.{js,css,md}'",
"test": "react-scripts test",
"devTest": "react-scripts test --watchAll",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}