-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.25 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
{
"name": "covid19_tracker",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "4.10.1",
"@testing-library/jest-dom": "4.2.4",
"@testing-library/react": "9.3.2",
"@testing-library/user-event": "7.1.2",
"axios": "^0.21.1",
"bcryptjs": "2.4.3",
"bootstrap": "4.6.0",
"chart.js": "2.9.3",
"classnames": "2.2.6",
"config": "3.3.3",
"cors": "^2.8.5",
"dark-mode-toggle": "0.6.0",
"express": "4.17.1",
"express-validator": "6.7.0",
"gravatar": "1.8.1",
"jsonwebtoken": "8.5.1",
"moment": "2.29.1",
"mongoose": "5.10.18",
"prop-types": "15.7.2",
"react": "16.13.1",
"react-animation-components": "3.0.0",
"react-bootstrap": "1.5.2",
"react-chartjs-2": "2.9.0",
"react-countup": "4.3.3",
"react-dark-mode-toggle": "0.0.5",
"react-dom": "16.13.1",
"react-ga": "3.0.0",
"react-moment": "1.1.1",
"react-redux": "7.2.3",
"react-router-dom": "5.2.0",
"react-scripts": "3.4.1",
"recharts": "1.8.5",
"redux": "4.0.5",
"redux-devtools-extension": "2.13.9",
"redux-thunk": "2.3.0",
"request": "2.88.2",
"uuid": "^8.3.2"
},
"scripts": {
"start": "react-scripts start",
"client": "npm start",
"startserver": "node server",
"server": "nodemon server",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"proxy": "http://localhost:5000/",
"description": "<h2> Covid-19 Cases Tracker </h2>",
"main": "server.js",
"devDependencies": {
"concurrently": "5.3.0",
"nodemon": "2.0.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rahil1304/covid-19-cases-tracker.git"
},
"author": "Rahil Sarvaiya",
"license": "ISC",
"bugs": {
"url": "https://github.com/rahil1304/covid-19-cases-tracker/issues"
},
"homepage": "https://github.com/rahil1304/covid-19-cases-tracker"
}