-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.91 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
{
"name": "covid-dashboard",
"version": "0.1.0",
"description": "https://github.com/rolling-scopes-school/tasks/blob/master/tasks/covid-dashboard.md",
"main": "src/index.tsx",
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Rolling-Scopes-School-Team/covid-dashboard/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rolling-Scopes-School-Team/covid-dashboard.git"
},
"scripts": {
"dev": "webpack-dev-server --open --hot -d",
"build": "cross-env NODE_ENV=production webpack -p",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -f -r build",
"analyze": "cross-env analyze=true NODE_ENV=production webpack -p",
"prettier:format": "prettier --write \"**/*.+(ts|tsx|scss)\"",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"lint:fix-staged": "eslint --fix",
"fix": "run-s prettier:format lint:fix",
"fix-staged": "lint-staged",
"svgo": "svgo --pretty --indent=2 --disable=removeViewBox,mergePaths --enable=inlineStyles --config '{ \"plugins\": [ { \"inlineStyles\": { \"onlyMatchedOnce\": false } }] }' $FILE",
"svgo-all": "svgo -r -f src --pretty --indent=2 --disable=removeViewBox,mergePaths --enable=inlineStyles --config '{ \"plugins\": [ { \"inlineStyles\": { \"onlyMatchedOnce\": false } }] }' $FILE"
},
"dependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/runtime": "^7.12.5",
"@types/recharts": "^1.8.18",
"@types/classnames": "^2.2.10",
"@types/copy-webpack-plugin": "^6.0.0",
"@types/html-webpack-plugin": "^3.2.3",
"@types/leaflet": "^1.5.19",
"@types/mini-css-extract-plugin": "^0.9.1",
"@types/node": "^14.11.2",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.12",
"@types/react-router-dom": "^5.1.5",
"@types/webpack": "^4.41.22",
"@types/webpack-bundle-analyzer": "^3.8.0",
"@types/webpack-dev-server": "^3.11.0",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"axios": "^0.21.0",
"babel-loader": "^8.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-preset-env": "^1.7.0",
"classnames": "^2.2.6",
"copy-webpack-plugin": "^6.1.1",
"cross-env": "^7.0.2",
"css-loader": "^4.3.0",
"eslint": "^7.9.0",
"eslint-config-airbnb-typescript": "^10.0.0",
"eslint-config-prettier": "^7.0.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-import-resolver-webpack": "^0.12.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-react": "^7.21.0",
"eslint-plugin-react-hooks": "^4.1.2",
"file-loader": "^6.1.0",
"glob-all": "^3.2.1",
"html-webpack-plugin": "^4.5.0",
"husky": "^4.3.6",
"leaflet": "^1.7.1",
"lint-staged": "^10.5.3",
"mini-css-extract-plugin": "^0.11.2",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"prettier-eslint": "^12.0.0",
"react": "^16.13.1",
"react-cookie": "^4.0.3",
"react-dom": "^16.13.1",
"react-leaflet": "^3.0.5",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-svg-loader": "^3.0.3",
"recharts": "^1.8.5",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"sass-loader": "^10.0.2",
"style-loader": "^1.2.1",
"svgo": "^1.3.2",
"svgo-loader": "^2.2.1",
"ts-loader": "^8.0.4",
"ts-node": "^9.0.0",
"typescript": "^4.0.3",
"typescript-plugin-css-modules": "^2.7.0",
"url-loader": "^4.1.0",
"webpack": "^4.44.2",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}