-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 927 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
{
"name": "week-5-hackathon-team-chill",
"version": "1.0.0",
"description": "Feel free to delete this and start from scratch.",
"main": "app.js",
"type": "module",
"bin": {
"week-5-hackathon-team-chill": "bin/www.js"
},
"scripts": {
"reset-database": "node --env-file=.env db/scripts/reset-database.js",
"start": "node --env-file=.env controllers/movies.js",
"dev": "node --env-file=.env --watch controllers/movies.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SchoolOfCode/week-5-hackathon-team-chill.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/SchoolOfCode/week-5-hackathon-team-chill/issues"
},
"homepage": "https://github.com/SchoolOfCode/week-5-hackathon-team-chill#readme",
"dependencies": {
"express": "^4.21.2",
"pg": "^8.13.1"
}
}