-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.12 KB
/
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
41
42
43
44
45
{
"name": "cloud-nest",
"version": "1.0.0",
"description": "A cloud storage app",
"compilerOptions": {
"esModuleInterop": true
},
"scripts": {
"start": "ts-node server.ts",
"build": "tsc",
"dev": "nodemon --exec ts-node server.ts",
"tsc": "tsc"
},
"author": "Muhammed",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.20.0",
"@quixo3/prisma-session-store": "^3.1.13",
"@supabase/supabase-js": "^2.45.4",
"@types/multer": "^1.4.12",
"bcryptjs": "^2.4.3",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.21.0",
"express-session": "^1.18.0",
"multer": "^1.4.5-lts.1",
"nodemon": "^3.1.7",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"pg": "^8.13.0",
"prisma": "^5.20.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/bcryptjs": "^2.4.6",
"@types/express": "^5.0.0",
"@types/express-session": "^1.18.0",
"@types/node": "^22.7.5",
"@types/passport": "^1.0.16",
"@types/passport-local": "^1.0.38",
"supabase": "^1.200.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}