-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·70 lines (70 loc) · 2.02 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
{
"name": "mern",
"version": "1.0.0",
"description": "CarMate App - about vehicle information",
"proxy": {
"/auth/google": {
"target": "http://localhost:3000"
}
},
"main": "server.js",
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node server.js",
"start:dev": "concurrently \"nodemon --ignore 'client/*'\" \"npm run client\"",
"client": "cd client && npm run start",
"seed": "node scripts/seedDB.js",
"install": "cd client && npm install",
"build": "cd client && npm run build",
"heroku-postbuild": "echo Skip builds on Heroku"
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^4.1.0",
"eslint": "^5.6.0",
"eslint-config-google": "^0.12.0",
"nodemon": "^1.18.7"
},
"engines": {
"node": "10.3.0",
"npm": "6.x"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.17",
"@fortawesome/free-solid-svg-icons": "^5.8.1",
"@fortawesome/react-fontawesome": "^0.1.4",
"@material-ui/core": "^3.9.2",
"@material-ui/icons": "^3.0.2",
"@material-ui/styles": "^3.0.0-alpha.10",
"axios": "^0.19.0",
"bootstrap": "^4.3.1",
"clsx": "^1.0.3",
"cookie-session": "^1.3.3",
"dotenv": "^7.0.0",
"express": "^4.16.3",
"final-form": "^4.12.0",
"if-env": "^1.0.4",
"markdown-to-jsx": "^6.9.3",
"material-ui": "^0.20.2",
"mdbreact": "^4.11.0",
"mongoose": "^5.3.16",
"morgan": "^1.9.1",
"npm": "^6.9.0",
"passport": "^0.4.0",
"passport-google-oauth20": "^2.0.0",
"passport-google-token": "^0.1.2",
"prop-types": "^15.7.2",
"react-addons-update": "^15.6.2",
"react-bootstrap": "^1.0.0-beta.5",
"react-cookie": "^3.1.2",
"react-dom": "^16.8.5",
"react-final-form": "^4.1.0",
"react-geocode": "^0.1.2",
"react-google-autocomplete": "^1.0.18",
"react-google-login": "^5.0.3",
"react-google-maps": "^9.4.5",
"react-router": "^5.0.0",
"validator": "^10.11.0"
}
}