-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 956 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
38
39
40
41
{
"name": "peanut-gallery",
"version": "1.0.0",
"description": "A film review website",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arturjzapater/peanut-gallery.git"
},
"keywords": [
"review",
"film",
"movie",
"rating"
],
"author": "Artur J Zapater",
"license": "MIT",
"bugs": {
"url": "https://github.com/arturjzapater/peanut-gallery/issues"
},
"homepage": "https://github.com/arturjzapater/peanut-gallery#readme",
"dependencies": {
"body-parser": "^1.19.0",
"cookie-session": "^1.4.0",
"express": "^4.17.1",
"mongodb": "^3.5.9",
"node-fetch": "^3.1.1",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"pug": "^3.0.1"
},
"devDependencies": {
"eslint": "^7.4.0",
"eslint-config-pixie": "^1.0.0",
"nodemon": "^2.0.4"
}
}