This repository was archived by the owner on Jan 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.01 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
70
71
72
73
74
75
76
77
78
{
"name": "track-covid",
"version": "1.2.0",
"homepage": "http://ahampriyanshu.github.io/track-covid",
"dependencies": {
"@material-ui/core": "^4.10.2",
"@material-ui/icons": "^4.9.1",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"axios": "^0.24.0",
"classnames": "^2.2.6",
"feather-icons": "^4.28.0",
"radium": "^0.26.0",
"react": "^16.13.1",
"react-animations": "^1.0.0",
"react-chartjs-2": "^2.9.0",
"react-countup": "^4.3.3",
"react-dom": "^16.13.1",
"react-feather": "^2.0.8",
"react-scripts": "3.4.1",
"workbox-build": "^6.3.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build && npm run build-sw",
"test": "react-scripts test",
"eject": "react-scripts eject",
"eslint": "eslint .",
"eslint:fix": "eslint --fix --max-warnings=0",
"format": "prettier --write \"**/*.+(js|jsx|json|yml|css|yaml|md|html)\"",
"build-sw": "node ./src/sw-build.js",
"start-sw": "http-server ./build -c 0",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"eslintConfig": {
"extends": [
"react-app",
"plugin:prettier/recommended"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.+(js|jsx)": [
"npm run eslint:fix",
"prettier --write \"**/*.+(js|jsx)\""
],
"*.+(json|yml|yaml|md)": [
"prettier --write \"**/*.+(json|yml|css|yaml|md)\""
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"gh-pages": "^3.2.3",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5"
}
}