forked from gjones2019/deployed-app-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.18 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
{
"name": "deployed-app-test",
"version": "1.0.0",
"description": "Practicing deployment.",
"main": "index.js",
"scripts": {
"start": "node server/index.js",
"dev": "webpack --mode development --open --hot --watch",
"build": "webpack --mode production",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joshjnunez/deployed-app-test.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/joshjnunez/deployed-app-test/issues"
},
"homepage": "https://github.com/joshjnunez/deployed-app-test#readme",
"dependencies": {
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"autoprefixer": "^9.8.6",
"axios": "^0.19.2",
"bootstrap": "^3.4.1",
"bootstrap-scss": "^4.5.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jquery": "^3.5.1",
"mongoose": "^5.9.28",
"mysql": "^2.18.1",
"mysql2": "^2.1.0",
"passport-google-oauth": "^2.0.0",
"popper.js": "^1.16.1",
"postcss-loader": "^3.0.0",
"precss": "^4.0.0",
"react": "^16.13.1",
"react-bootstrap": "^1.3.0",
"react-dom": "^16.13.1",
"react-google-login": "^5.1.21",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"sequelize": "^6.3.4"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"babel-core": "^6.26.3",
"babel-loader": "^8.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^4.2.1",
"eslint": "^7.7.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"node-sass": "^4.14.1",
"sass-loader": "^9.0.3",
"style-loader": "^1.2.1",
"url-loader": "^4.1.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
}
}