-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1007 Bytes
/
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
{
"name": "appointment-routes",
"version": "1.0.0",
"description": "A React app that utilizes the Google Maps APIs to generate driving routes for appointments for a given day.",
"main": "app.js",
"scripts": {
"start": "concurrently \"yarn run server\" \"yarn run client\"",
"server": "nodemon app.js",
"server-prod": "export NODE_ENV=production && node app.js",
"client": "cd client && yarn start",
"build": "cd client && yarn run build",
"test": "echo \"Error: no test specified\" && exit 1",
"heroku-postbuild": "cd client && yarn install && yarn run build",
"install-all": "yarn install && cd client && yarn install"
},
"author": "Kellen Busby",
"license": "ISC",
"dependencies": {
"@googlemaps/google-maps-services-js": "^3.2.6",
"concurrently": "^6.3.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1"
},
"devDependencies": {
"nodemon": "^2.0.13"
},
"engines": {
"node": "12.x",
"yarn": "1.x"
}
}