-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.05 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.05 KB
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
{
"name": "mapjourney",
"version": "1.0.0",
"description": "Whether it be road trips, domestic, international, or even staycations in your own city, let MapJourney help you map out and route any future travels with ease, seemingly taking away the frustration out of travel planning and allowing you to enjoy your vacations once again. ",
"author": "Vivian San",
"license": "MIT",
"engines": {
"node": "10.1.0",
"yarn": "1.7.0"
},
"scripts": {
"client": "cd client && yarn start",
"server": "nodemon server.js",
"dev-start": "export NODE_ENV=development && concurrently \"yarn server\" \"yarn client\"",
"start": "node server.js",
"heroku-prebuild": "yarn",
"heroku-postbuild": "cd client && npm install && npm install --only=dev --no-shrinkwrap && rm -rf build && npm run build"
},
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"dotenv": "^5.0.1",
"express": "^4.16.2",
"express-validator": "^5.2.0",
"mysql": "^2.15.0"
},
"devDependencies": {
"concurrently": "^3.5.0"
}
}