-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 961 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 961 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
40
{
"name": "streamvault-backend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "nodemon",
"generate": "prisma generate",
"build": "tsc -b",
"start": "node dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/express": "^5.0.1",
"@types/jsonwebtoken": "^9.0.9",
"@types/multer": "^1.4.12",
"@types/node": "^22.14.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.873.0",
"@aws-sdk/s3-request-presigner": "^3.888.0",
"@prisma/client": "^6.6.0",
"@types/cors": "^2.8.19",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.2",
"nanoid": "^5.1.5",
"nodemon": "^3.1.9",
"prisma": "^6.6.0",
"uuid": "^11.1.0"
}
}