-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 961 Bytes
/
package.json
File metadata and controls
39 lines (39 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
{
"name": "file-uploader",
"version": "1.0.0",
"private": true,
"type": "module",
"imports": {
"#root/*": "./src/*"
},
"scripts": {
"db:migrate": "prisma migrate dev --name",
"db:gen": "prisma generate",
"db:reset": "prisma migrate reset",
"lint": "biome check --fix",
"start": "prisma generate && prisma migrate deploy && node --watch src/index.js",
"test": "node --test --watch"
},
"dependencies": {
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"@quixo3/prisma-session-store": "^3.1.20",
"@supabase/supabase-js": "^2.107.0",
"bcryptjs": "^3.0.3",
"ejs": "^6.0.1",
"express": "^5.2.1",
"express-session": "^1.19.0",
"express-validator": "^7.3.2",
"http-errors": "^2.0.1",
"multer": "^2.1.1",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"pg": "^8.21.0",
"pino-http": "^11.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.16",
"pino-pretty": "^13.1.3",
"prisma": "^7.8.0"
}
}