-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1023 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
33
34
35
36
37
{
"name": "capstone-sql",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon index.js",
"reset-db": "dropdb musicpal; createdb musicpal; psql -f schema.sql musicpal; psql -f seed.sql musicpal;psql musicpal < node_modules/connect-pg-simple/table.sql"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"bcrypt": "^3.0.3",
"body-parser": "^1.18.3",
"connect-pg-simple": "^5.0.0",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-session": "^1.15.6",
"mysql": "^2.16.0",
"node": "^11.6.0",
"pg-promise": "^8.5.4"
},
"devDependencies": {
"nodemon": "^1.18.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CB987/MusicPal-backend.git"
},
"bugs": {
"url": "https://github.com/CB987/MusicPal-backend/issues"
},
"homepage": "https://github.com/CB987/MusicPal-backend#readme",
"description": ""
}