-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.57 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": "garth-tolands-hacker-news",
"version": "0.1.0",
"dependencies": {
"axios": "0.26.1",
"bootstrap": "5.1.3",
"react": "18.0.0",
"react-bootstrap": "2.2.3",
"react-dom": "18.0.0",
"react-icons": "4.3.1",
"react-infinite-scroller": "1.2.5",
"react-toastify": "8.2.0",
"styled-components": "5.3.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx,json,css,scss,md}": [
"npm run tidy && npm run lint"
]
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"lint": "eslint \"**/*.ts*\" --ignore-pattern node_modules/ --ignore-pattern dist/",
"tidy": "npx prettier --write .",
"tidy:check": "npx prettier --check ."
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/jest": "27.4.1",
"@types/node": "17.0.23",
"@types/react": "18.0.1",
"@types/react-bootstrap": "0.32.29",
"@types/react-dom": "18.0.0",
"@types/react-infinite-scroller": "1.2.3",
"@types/styled-components": "5.1.25",
"@typescript-eslint/parser": "5.18.0",
"gh-pages": "3.2.3",
"husky": "7.0.4",
"lint-staged": "12.3.7",
"prettier": "2.6.2",
"react-scripts": "5.0.0",
"typescript": "4.6.3",
"web-vitals": "2.1.4"
}
}