-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.38 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
{
"name": "muber",
"version": "0.1.0",
"description": "Mern Demo",
"engines": {
"node": "10.3.0"
},
"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": "npm run build"
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^3.5.0",
"nodemon": "^1.11.0"
},
"dependencies": {
"auth0-lock": "^11.13.0",
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"braintree": "^2.14.0",
"braintree-web-drop-in-react": "^1.0.5",
"browserslist": "^4.4.1",
"deck.gl": "^6.3.4",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"fs": "0.0.1-security",
"history": "^4.7.2",
"if-env": "^1.0.4",
"mysql": "^2.16.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-facebook-login": "^4.1.1",
"react-map-gl": "^4.0.8",
"react-map-gl-geocoder": "^1.5.7",
"react-router-dom": "^4.3.1",
"react-scripts": "^2.1.3",
"react-stripe-checkout": "^2.6.3",
"twilio": "^3.26.1",
"viewport-mercator-project": "^6.1.0"
}
}