This repository has been archived by the owner on Aug 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
96 lines (96 loc) · 3.08 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
{
"name": "covid-tracker-graphql",
"version": "1.0.0",
"description": "",
"scripts": {
"dev": "ts-node-dev tools/scripts/development",
"start:server": "ts-node tools/scripts/start/index.ts --env.production",
"start": "ts-node tools/scripts/start/index.ts",
"build:client": "NODE_ENV=production ts-node tools/scripts/build",
"lint": "eslint 'src/**/*.{ts,tsx}' --max-warnings 20",
"format": "prettier --write '*.{js,ts,tsx}' 'src/**/*.{js,ts,tsx}'"
},
"scarfSettings.enabled": false,
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/client": "3.3.21",
"@graphql-tools/schema": "8.3.2",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@nivo/line": "^0.61.1",
"apollo-server-express": "3.6.3",
"axios": "0.21.2",
"cross-fetch": "3.1.5",
"dayjs": "^1.8.29",
"express": "^4.17.1",
"graphql": "16.3.0",
"leaflet": "^1.6.0",
"node-cache": "^5.1.2",
"papaparse": "^5.2.0",
"react": "17.0.0",
"react-dom": "17.0.0",
"react-helmet": "^6.1.0",
"react-hot-loader": "^4.12.21",
"react-leaflet": "^2.7.0",
"react-router": "^5.2.0",
"react-router-config": "^5.1.1",
"react-router-dom": "^5.2.0",
"react-table": "^7.2.2",
"ts-node": "^8.10.2",
"typescript": "^4.1.3"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/node": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@material-ui/types": "^5.1.0",
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.5",
"@types/node": "^13.13.14",
"@types/papaparse": "^5.0.4",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"@types/react-helmet": "^5.0.16",
"@types/react-router-dom": "^5.1.5",
"@types/zen-observable": "^0.8.0",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^5.2.0",
"css-loader": "^3.6.0",
"eslint": "^7.4.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"express-reload": "^1.2.0",
"html-webpack-plugin": "^3.2.0",
"prettier": "^2.0.5",
"source-map-loader": "^0.2.4",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^2.3.7",
"ts-loader": "^6.2.2",
"ts-node": "^8.10.2",
"ts-node-dev": "^1.0.0-pre.54",
"typescript": "^4.1.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12",
"webpack-dev-middleware": "^3.7.2",
"webpack-dev-server": "^3.11.0",
"webpack-hot-client": "^4.1.2",
"webpack-hot-middleware": "^2.25.0",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2"
}
}