-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.6 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
64
65
66
67
{
"name": "covidscholar.org",
"version": "0.1.0",
"private": true,
"homepage": "/",
"dependencies": {
"react-autosuggest": "^10.0.1",
"rxjs": "^6.5.5"
},
"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": "react-scripts build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@nivo/bar": "^0.61.1",
"@nivo/stream": "^0.61.1",
"@reach/router": "^1.2.1",
"@welldone-software/why-did-you-render": "^3.3.9",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react-hooks": "^2.3.0",
"faker": "^4.1.0",
"fomantic-ui-css": "^2.8.4",
"http-proxy-middleware": "^0.20.0",
"husky": "^3.1.0",
"lint-staged": "^10.1.0",
"lodash": "^4.17.20",
"moment": "^2.24.0",
"nivo": "^0.31.0",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-floating-action-button": "^1.0.5",
"react-iframe": "^1.8.0",
"react-moment": "^0.9.7",
"react-scripts": "^3.4.3",
"react-transition-group": "^4.3.0",
"react-window": "^1.8.5",
"rebass": "^4.0.6",
"semantic-ui-react": "^0.88.2",
"styled-components": "^4.4.1",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}