-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.08 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.08 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
{
"name": "tnp_be",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"start": "npm run build && node dist/index.js",
"build": "tsc -b && npm run copy:prisma",
"copy:prisma": "node ./scripts/copyPrisma.js"
},
"keywords": [],
"author": "Gyanranjan Patra",
"license": "ISC",
"devDependencies": {
"@prisma/client": "^6.16.1",
"@types/bcrypt": "^6.0.0",
"@types/express": "^5.0.3",
"@types/mongoose": "^5.11.96",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.3.0",
"nodemon": "^3.1.10",
"prisma": "^6.16.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.2"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.883.0",
"@aws-sdk/s3-request-presigner": "^3.879.0",
"@prisma/client": "^6.15.0",
"@types/cors": "^2.8.19",
"@types/dotenv": "^8.2.3",
"bcryptjs": "^3.0.2",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"zod": "^4.1.5"
}
}