forked from covid19india/covid19india-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.31 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "covid19india",
"version": "1.0.0",
"private": true,
"homepage": "http://covid19india.github.io/",
"dependencies": {
"@juggle/resize-observer": "^3.1.3",
"@material-ui/core": "^4.9.12",
"@primer/components": "^18.1.1",
"@researchgate/react-intersection-observer": "^1.1.3",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^10.0.4",
"animejs": "^3.2.0",
"axios": "^0.19.2",
"chart.js": "^2.9.3",
"classnames": "^2.2.6",
"corejs-typeahead": "^1.3.1",
"d3": "^5.16.0",
"date-fns": "^2.12.0",
"date-fns-tz": "^1.0.10",
"deepmerge": "^4.2.2",
"fast-deep-equal": "^3.1.1",
"intersection-observer": "^0.10.0",
"node-sass": "^4.14.0",
"i18next": "^19.4.4",
"i18next-browser-languagedetector": "^4.1.1",
"i18next-http-backend": "^1.0.6",
"moment": "^2.24.0",
"react": "^16.13.1",
"react-chartjs-2": "^2.9.0",
"react-date-picker": "^8.0.1",
"react-dom": "^16.13.1",
"react-feather": "^2.0.8",
"react-force-graph-2d": "^1.15.4",
"react-helmet": "^6.0.0",
"react-i18next": "^11.3.5",
"react-infinite-scroll-component": "^5.0.4",
"react-latex": "^1.6.0",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.1",
"react-table": "^7.0.4",
"react-tooltip": "^4.2.5",
"react-use": "^14.2.0",
"source-map-explorer": "^2.4.2",
"styled-components": "^5.1.0",
"topojson": "^3.0.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build && cp build/index.html build/404.html",
"map_test": "react-scripts test src/__tests__/mapAndApiStateNames.test.js",
"test": "react-scripts test --testPathIgnorePatterns=src/__tests__/mapAndApiStateNames.test.js",
"eject": "react-scripts eject",
"eslint": "eslint .",
"eslint:fix": "eslint --fix --max-warnings=0",
"format": "prettier --write \"**/*.+(js|jsx|json|yml|yaml|md|html)\"",
"scss-lint": "sass-lint 'src/**/*.scss' -v -f table --max-warnings 0",
"scss-lint:fix": "sass-lint-auto-fix 'src/**/*.scss' -d -h -c '.sass-lint-auto-fix.yml'",
"analyze": "source-map-explorer 'build/static/js/*.js'"
},
"eslintConfig": {
"extends": "react-app"
},
"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|yaml|md)\""
],
"*.+(css|scss)": [
"npm run scss-lint:fix",
"npm run scss-lint"
]
},
"devDependencies": {
"@welldone-software/why-did-you-render": "^4.1.3",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"prettier": "^2.0.5",
"sass-lint": "^1.13.1",
"sass-lint-auto-fix": "^0.21.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"sideEffects": false
}