-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 888 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 888 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
37
38
39
40
{
"name": "vidly",
"version": "0.0.27",
"description": "api endpoints",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "NODE_ENV=development nodemon index.js",
"prod": "NODE_ENV=production node index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/resourcesatresource/node-api.git"
},
"engines": {
"node": "22"
},
"keywords": [],
"author": "Saurav Sanjay",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.0",
"compression": "^1.8.1",
"config": "^3.3.9",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"ejs": "^3.1.10",
"express": "^4.22.1",
"helmet": "^7.0.0",
"joi": "^18.0.2",
"jsonwebtoken": "^9.0.1",
"lodash": "^4.17.21",
"mongoose": "^7.8.4",
"nodemailer": "^8.0.5"
},
"type": "commonjs",
"devDependencies": {
"nodemon": "^3.1.9"
}
}