-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 742 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 742 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
{
"name": "Vinyl",
"version": "1.0.0",
"description": "A community for record enthusiasts to review their favorite albums.",
"scripts": {
"start": "node server.js",
"start:dev": "nodemon server.js",
"db:create": "createdb vinyl",
"db:drop": "dropdb vinyl",
"db:schema": "psql -d vinyl < schema.sql",
"db:seed": "psql -d vinyl < albums.sql"
},
"license": "MIT",
"dependencies": {
"bcrypt": "^1.0.2",
"body-parser": "^1.17.2",
"cookie-parser": "^1.4.3",
"dotenv": "^4.0.0",
"ejs": "^2.5.6",
"express": "^4.15.3",
"express-session": "^1.15.4",
"moment": "^2.18.1",
"pg": "^6.2.4",
"pg-transaction": "^1.0.4"
},
"devDependencies": {
"nodemon": "^1.11.0"
}
}