-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.43 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.43 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
{
"name": "optimizing-react",
"version": "2.0.2",
"private": true,
"homepage": "http://g3f4.github.io/optimizing-react",
"dependencies": {
"@material-ui/core": "4.5.0",
"@material-ui/icons": "4.4.3",
"@types/faker": "4.1.6",
"@types/react": "16.9.5",
"@types/react-dom": "16.9.1",
"cross-env": "6.0.3",
"faker": "4.1.0",
"immer": "4.0.1",
"react": "16.10.2",
"react-dom": "16.10.2",
"react-scripts": "3.2.0",
"tiny-params": "4.0.0",
"typescript": "3.6.4"
},
"scripts": {
"start": "cross-env PORT=5000 react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint './src/**/*.{ts,tsx}'",
"lint:fix": "eslint './src/**/*.{ts,tsx}' --fix"
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint:fix",
"pre-push": "yarn run lint"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "2.3.3",
"@typescript-eslint/parser": "2.3.3",
"eslint-config-prettier": "6.4.0",
"eslint-config-react": "1.1.7",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-react": "7.16.0",
"husky": "3.0.8",
"prettier": "1.18.2"
}
}