-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 934 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 934 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
{
"name": "e-library",
"module": "index.ts",
"type": "module",
"version": "1.0.0",
"description": "E-Library",
"main": "index.ts",
"scripts": {
"start": "bun index.ts",
"dev": "bun --watch index.ts"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/bun": "latest",
"@types/cookie-parser": "^1.4.9",
"@types/dotenv": "^8.2.3",
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/mongoose": "^5.11.97",
"@types/multer": "^2.0.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@types/http-errors": "^2.0.5",
"bcrypt": "^6.0.0",
"cloudinary": "^2.7.0",
"cookie-parser": "^1.4.7",
"dotenv": "^17.2.0",
"express": "^5.1.0",
"express-validator": "^7.2.1",
"http-error": "^0.0.6",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.16.4",
"multer": "^2.0.2",
"path": "^0.12.7"
}
}