-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.81 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
{
"homepage": "http://nickbui729.github.io/nasa-ui-gh-pages",
"name": "covid-tracker-app",
"version": "1.0.0",
"description": "covid-tracker app using react",
"main": "index.js",
"scripts": {
"start": "npm run build",
"build": "webpack -p && copy src\\index.html dist\\index.html && webpack-dev-server",
"build-mac": "webpack -p && cp src/index.html dist/index.html && webpack-dev-server",
"test": "echo \"Error: no test specified\" && exit 1",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"author": "Nick Bui",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.11.6",
"@babel/plugin-proposal-class-properties": "7.10.4",
"@babel/preset-env": "7.11.5",
"@babel/preset-react": "7.10.4",
"babel-core": "^6.26.3",
"babel-loader": "^8.1.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "4.3.0",
"file-loader": "^6.2.0",
"gh-pages": "^3.2.3",
"style-loader": "1.2.1",
"uglifyjs-webpack-plugin": "2.2.0",
"url-loader": "^4.1.1",
"webpack": "^4.46.0",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.0"
},
"dependencies": {
"axios": "^0.21.1",
"chart.js": "^3.4.0",
"core-js": "^3.12.1",
"jwt-decode": "^3.1.2",
"prop-types": "15.7.2",
"react": "^17.0.2",
"react-chartjs-2": "^3.0.3",
"react-dom": "^17.0.2",
"react-google-login": "^5.2.2",
"react-modal": "^3.14.2",
"react-redux": "7.2.4",
"react-router-dom": "5.2.0",
"react-spring": "^9.2.2",
"react-uuid": "^1.0.2",
"reactstrap": "^8.9.0",
"redux": "^4.1.0",
"redux-promise-middleware": "^6.1.2",
"redux-thunk": "^2.3.0",
"regenerator-runtime": "^0.13.7"
}
}