forked from latoyazamill/Music-App
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 KB
/
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
33
34
35
36
37
38
39
40
{
"name": "music-app",
"version": "1.0.0",
"description": "Init #3: Hello, Web Servers",
"main": "server.js",
"engines": {
"node": "7.7.4"
},
"dependencies": {
"body-parser": "^1.17.2",
"ejs": "^2.5.6",
"express": "^4.15.3",
"express-validator": "^3.2.0",
"moment": "^2.18.1",
"morgan": "^1.8.2",
"nodemon": "^1.11.0",
"pg": "^6.2.3",
"pg-pool": "^1.7.1"
},
"devDependencies": {},
"scripts": {
"postinstall": "",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"db:create": "createdb music_api",
"db:drop": "dropdb music_api",
"db:setup": "psql music_api < ./db/schema.sql",
"db:seed": "psql music_api < ./db/data.sql"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eastnorthwest/Music-App.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/eastnorthwest/Music-App/issues"
},
"homepage": "https://github.com/eastnorthwest/Music-App#readme"
}