-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 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
46
47
48
49
50
51
52
{
"name": "blufiles",
"version": "1.2.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "node .",
"build": "tsc",
"dev": "tsc-watch --onSuccess \"node .\"",
"lint": "eslint .",
"check": "tsc --noEmit",
"format": "prettier --write .",
"openapi": "npx tsx scripts/generate.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"imports": {
"#lib/*": "./dist/lib/*"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/bcrypt": "^6.0.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/express-serve-static-core": "^5.1.1",
"eslint": "^10.2.1",
"globals": "^17.5.0",
"prettier": "^3.8.3",
"prisma": "^7.7.0",
"ts-morph": "^28.0.0",
"tsc-watch": "^7.2.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.58.2"
},
"dependencies": {
"@prisma/adapter-pg": "^7.7.0",
"@prisma/client": "^7.7.0",
"@vscode/vscode-languagedetection": "^1.0.23",
"bcrypt": "^6.0.0",
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"express-file-routing": "^3.1.0",
"express-rate-limit": "^8.3.2",
"file-type": "^22.0.1",
"node-cron": "^4.2.1",
"parse-multipart-data": "^1.5.0",
"zod": "^4.3.6"
},
"type": "module"
}