-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 836 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 836 Bytes
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
{
"name": "server",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "NODE_ENV=development nodemon ./bin/www"
},
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "~1.4.4",
"cookie-session": "^1.3.3",
"cors": "^2.8.5",
"debug": "~2.6.9",
"express": "~4.16.1",
"express-session": "^1.17.0",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"mongoose": "^5.7.4",
"mongoose-findorcreate": "^3.0.0",
"morgan": "~1.9.1",
"passport": "^0.4.0",
"passport-google-oauth": "^2.0.0",
"youtube-captions-scraper": "^1.0.3",
"youtube-node": "^1.3.3",
"dotenv": "^8.1.0"
},
"devDependencies": {
"nodemon": "^1.19.3"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"singleQuote": true
}
}