-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 857 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 857 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
{
"name": "upi-api-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "nodemon --watch src --ext ts --exec \"node --loader ts-node/esm src/index.ts\"",
"start": "node dist/src/index.js"
},
"keywords": [],
"author": "Chirayu Sahu",
"license": "ISC",
"type": "module",
"dependencies": {
"@prisma/client": "^6.16.2",
"axios": "^1.12.2",
"bcryptjs": "^3.0.2",
"cheerio": "^1.1.2",
"cors": "^2.8.5",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"rate-limiter-flexible": "^8.0.1",
"redis": "^5.8.2"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.5.2",
"nodemon": "^3.1.10",
"prisma": "^6.16.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
}
}