-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.19 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
41
42
43
{
"name": "horrornightmovies",
"version": "1.0.0",
"description": "Which movie should we watch on horror night?",
"main": "index.js",
"scripts": {
"test": "node ./src/tests/*.test.js | tap-spec",
"nodemon": "nodemon src/index.js",
"start": "node src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac-12/HorrorNightMovies.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac-12/HorrorNightMovies/issues"
},
"homepage": "https://github.com/fac-12/HorrorNightMovies#readme",
"devDependencies": {
"istanbul": "^0.4.5",
"nodemon": "^1.12.5",
"supertest": "^3.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.8.0"
},
"engines": {
"node": "9.2.0"
},
"dependencies": {
"bcrypt": "^1.0.3",
"body-parser": "^1.18.2",
"cookie-session": "^2.0.0-beta.3",
"env2": "^2.2.0",
"express": "^4.16.2",
"express-handlebars": "^3.0.0",
"pg-promise": "^7.3.2",
"query-string": "^5.0.1",
"serve-favicon": "^2.4.5",
"validator": "^9.2.0"
}
}