-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.59 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
69
{
"name": "prefetch-routes",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.11.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.0.7",
"@types/jest": "^26.0.7",
"@types/node": "^16.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"history": "^5.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router": "^6.0.0-beta.0",
"react-router-dom": "^6.0.0-beta.0",
"react-scripts": "4.0.3",
"route-manifest": "^1.0.0",
"typescript": "~4.3.2"
},
"scripts": {
"dev": "craco start",
"build": "craco build",
"test": "craco test",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.75%",
"not ie 11",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@craco/craco": "^6.2.0",
"@types/prettier": "^2.0.2",
"@types/testing-library__jest-dom": "^5.9.1",
"husky": ">=4",
"lint-staged": ">=10",
"prettier": "^2.0.5",
"quicklink": "^2.0.0",
"typesync": "^0.8.0",
"webpack-route-manifest": "^1.2.0"
},
"prettier": {
"semi": false,
"singleQuote": true,
"arrowParens": "avoid"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,json,css,md}": "prettier --write"
}
}