-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.01 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
31
32
33
34
35
36
37
38
{
"name": "group-project-3",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node app.js",
"devel": "nodemon app.js",
"client": "cd client && npm start",
"dev": "concurrently --kill-others-on-fail \"npm run devel\" \"npm run client\"",
"debugger": "DEBUG=: nodemon app.js",
"heroku-postbuild": "npm install && cd client && npm install --only-dev && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "https://git.generalassemb.ly/aaculp/Group-Project-3.git"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"cors": "^2.8.5",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"express-session": "^1.15.6",
"heroku": "^7.18.7",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pg-promise": "^8.5.1"
},
"devDependencies": {
"concurrently": "^4.0.1",
"nodemon": "^1.18.6"
}
}