-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.73 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.73 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
59
60
61
62
63
64
65
66
67
68
{
"name": "create-react-app-seed-ts",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "EXTEND_ESLINT=true react-app-rewired build",
"check:node": "check-node-version --package",
"ci": "CI=TRUE yarn build && CI=TRUE yarn test",
"format:js": "prettier --write 'src/**/*.{ts,tsx,js,jsx,json,css,scss,md}'",
"postinstall": "yarn run check:node",
"start": "EXTEND_ESLINT=true react-app-rewired start",
"test": "react-app-rewired test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"package.json": [
"sort-package-json",
"git add"
],
"src/**/*.{ts,tsx,js,jsx,json,css,scss,md}": [
"prettier --write",
"eslint --max-warnings=0",
"git add"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/jest": "^25.2.1",
"@types/node": "^13.13.2",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"check-node-version": "^4.0.1",
"eslint-config-prettier": "^6.2.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^3.0.5",
"lint-staged": "^9.2.5",
"prettier": "^1.18.2",
"react": "^16.12.0",
"react-app-rewired": "^2.1.5",
"react-dom": "^16.12.0",
"react-scripts": "3.4.0",
"sort-package-json": "^1.22.1",
"typescript": "^3.8.3"
},
"engines": {
"node": ">= 13.5.0 < 14"
},
"engine-strict": true,
"devDependencies": {}
}