-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.03 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
{
"name": "elib",
"version": "1.0.0",
"description": "This is a ebook API project.",
"main": "index.js",
"scripts": {
"dev": "nodemon server.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"REST",
"API",
"Express",
"NodeJS"
],
"author": "Sandeep Wadhawan <sandeepwadhawan2001@gmail.com>",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.29.0",
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.19",
"@types/dotenv": "^6.1.1",
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/multer": "^1.4.13",
"@types/node": "^24.0.1",
"eslint": "^9.29.0",
"globals": "^16.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.0"
},
"dependencies": {
"bcrypt": "^6.0.0",
"cloudinary": "^2.7.0",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"http-errors": "^2.0.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.15.2",
"multer": "^2.0.1"
}
}