-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 999 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 999 Bytes
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
{
"name": "wastate-immunization",
"version": "1.0.0",
"author": "Adam Palmer",
"engines": {
"node": "10.15.3"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/apalm112/FSJS-Capstone.git"
},
"main": "server.js",
"scripts": {
"start": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\"",
"client": "cd client && npm run start",
"server": "node ./server.js",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\"",
"heroku-postbuild": "cd client && npm install --only=dev && npm install && npm run build"
},
"dependencies": {
"express": "~4.16.0",
"https": "^1.0.0",
"http-errors": "^1.7.2",
"mongoose": "^5.4.17"
},
"devDependencies": {
"concurrently": "^4.1.0",
"debug": "~2.6.9",
"dotenv": "^6.2.0",
"morgan": "^1.9.1"
},
"keywords": [
"node",
"react",
"create-react-app",
"heroku",
"google maps"
]
}