-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1015 Bytes
/
package.json
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
{
"dependencies": {
"@azure/service-bus": "^7.9.2",
"@azure/storage-blob": "^12.16.0",
"@prisma/client": "^5.5.2",
"bcryptjs": "^2.4.3",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-fileupload": "^1.4.2",
"jsonwebtoken": "^9.0.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.5",
"@types/express": "^4.17.20",
"@types/express-fileupload": "^1.4.3",
"@types/jsonwebtoken": "^9.0.4",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.53.0",
"prisma": "^5.5.2",
"tsup": "^7.2.0",
"tsx": "^3.14.0",
"typescript": "^5.2.2"
},
"name": "file-manager",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "tsup src --out-dir build",
"dev": "tsx watch src/server.ts",
"lint": "eslint",
"lint:fix": "eslint --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": ""
}