-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.2 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "node-vidly-deployment",
"version": "1.0.0",
"private": false,
"description": "Vidly is a production-ready Node.js REST API for a movie rental system with JWT authentication, role-based access control, movie catalog and customers, and transactional rentals. Built with MongoDB/Mongoose, it uses Helmet, bcrypt, Winston logging, Jest tests, and scalable Express architecture API",
"keywords": [
"nodejs",
"express",
"mongodb",
"rest-api",
"jwt",
"authentication",
"movie-rental",
"mongoose",
"video-rental",
"backend",
"api"
],
"homepage": "https://github.com/orassayag/node-vidly-deployment#readme",
"bugs": {
"url": "https://github.com/orassayag/node-vidly-deployment/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/orassayag/node-vidly-deployment.git"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/orassayag"
},
"license": "MIT",
"author": {
"name": "Or Assayag",
"email": "orassayag@gmail.com",
"url": "https://github.com/orassayag"
},
"contributors": [
{
"name": "Or Assayag",
"email": "orassayag@gmail.com",
"url": "https://github.com/orassayag"
}
],
"type": "commonjs",
"main": "index.js",
"files": [
".github",
".vscode",
"config",
"helpers",
"middleware",
"models",
"routes",
"secrets",
"startup",
"tests",
".eslintrc.js",
".gitignore",
".prettierrc",
"CHANGELOG.md",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"index.js",
"INSTRUCTIONS.md",
"LICENSE",
"logfile.log",
"package-lock.json",
"package.json",
"README.md",
"SECURITY.md"
],
"scripts": {
"start": "node index.js",
"test": "jest --verbose"
},
"dependencies": {
"bcrypt": "^3.0.0",
"compression": "^1.7.3",
"eslint": "^5.1.0",
"express": "^4.16.3",
"express-async-errors": "^3.0.0",
"fawn": "^2.1.5",
"helmet": "^3.12.1",
"jsonwebtoken": "^8.3.0",
"moment": "^2.22.2",
"mongoose": "^5.2.3",
"winston": "^2.4.0"
},
"devDependencies": {
"jest": "^22.2.2",
"supertest": "^3.1.0"
},
"engines": {
"node": "8.11.3"
}
}