-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.15 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.15 KB
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
{
"name": "engineeringontap",
"version": "0.1.0",
"private": true,
"dependencies": {
"@reach/router": "^1.2.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-google-maps": "^9.4.5"
},
"devDependencies": {
"@types/jest": "24.0.13",
"@types/node": "12.0.2",
"@types/reach__router": "^1.2.4",
"@types/react": "16.8.17",
"@types/react-dom": "16.8.4",
"husky": "^2.3.0",
"lint-staged": "^8.1.7",
"prettier": "^1.17.1",
"react-scripts": "3.0.1",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-react": "^3.6.0",
"typescript": "3.4.5"
},
"scripts": {
"start": "BROWSER=none react-scripts start",
"build": "react-scripts build",
"format": "prettier --write '**/*.{ts,tsx,css,md,json,yml}'",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"tslint",
"git add"
],
"*.{json,css,md}": [
"prettier --write",
"git add"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}