-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.28 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.28 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
{
"name": "nexread-api",
"version": "1.0.0",
"description": "The api project for elib.",
"main": "dist/server.js",
"scripts": {
"dev": "nodemon",
"build": "tsc && tsc-alias",
"start": "node dist/server.js",
"docker:publish": "docker build --no-cache -t luckygoswami/nexread-api:v4 -t luckygoswami/nexread-api:latest --platform linux/amd64 . && docker push luckygoswami/nexread-api:v4 && docker push luckygoswami/nexread-api:latest"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "[email protected]",
"dependencies": {
"@types/cors": "^2.8.19",
"bcrypt": "^6.0.0",
"cloudinary": "^2.8.0",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"http-errors": "^2.0.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.19.3",
"multer": "^2.0.2"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/bcrypt": "^6.0.0",
"@types/express": "^5.0.5",
"@types/http-errors": "^2.0.5",
"@types/jsonwebtoken": "^9.0.10",
"@types/multer": "^2.0.0",
"@types/node": "^24.10.0",
"eslint": "^9.39.1",
"globals": "^16.5.0",
"jiti": "^2.6.1",
"nodemon": "^3.1.10",
"tsc-alias": "^1.8.16",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.3"
}
}