-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.56 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
44
45
46
47
48
49
50
51
52
{
"name": "binger.uk",
"version": "1.2.0",
"description": "Web application that provides a user-friendly interface for searching and watching movies and TV shows.",
"license": "MIT",
"copyright": "Copyright (c) 2024 Justin Hartman. All rights reserved.",
"author": "Justin Hartman <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/justinhartman/imdb-app.git"
},
"bugs": {
"url": "https://github.com/justinhartman/imdb-app/issues"
},
"homepage": "https://binger.uk",
"main": "app.js",
"scripts": {
"start": "node app.js",
"lint": "npx ejslint ./views/*.ejs ./views/**/*.ejs",
"db:status": "npx migrate-mongo status",
"db:migrate": "npx migrate-mongo up",
"db:rollback": "npx migrate-mongo down",
"publish:patch": "npx grunt",
"publish:minor": "npx grunt minor",
"publish:major": "npx grunt major",
"deploy:yarn": "yarn db:migrate && yarn start",
"deploy:npm": "npm run db:migrate && npm start"
},
"dependencies": {
"axios": "^1.6.8",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"connect-flash": "^0.1.1",
"connect-mongo": "^5.1.0",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.19.2",
"express-async-handler": "^1.2.0",
"express-session": "^1.18.0",
"mongoose": "^8.4.0",
"passport": "^0.7.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"ejs-lint": "^2.0.0",
"git-changelog": "^2.0.0",
"grunt": "^1.6.1",
"grunt-bump": "^0.8.0",
"grunt-git": "^1.1.1",
"migrate-mongo": "^11.0.0"
}
}