-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
57 lines (57 loc) · 1.34 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
{
"name": "cord-19-ui",
"version": "0.1.0",
"private": true,
"homepage": "/",
"dependencies": {
"fomantic-ui-css": "^2.8.4"
},
"lint-staged": {
"src/App/!(Guide)/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --single-quote --write",
"git add"
],
"src/App/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --single-quote --write",
"git add"
]
},
"scripts": {
"start": "react-scripts start",
"build": "CI=true react-scripts build && ln -s index.html build/404.html"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@reach/router": "^1.2.1",
"@welldone-software/why-did-you-render": "^7.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react-hooks": "^4.0.0",
"http-proxy-middleware": "^3.0.0",
"husky": "^8.0.0",
"lint-staged": "^14.0.0",
"lodash": "^4.17.15",
"moment": "^2.29.4",
"prettier": "^3.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-moment": "^1.0.0",
"react-scripts": "^3.4.0",
"react-window": "^1.8.5",
"rebass": "^4.0.6",
"semantic-ui-react": "^0.88.2",
"styled-components": "^6.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}