-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 930 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
{
"name": "server",
"module": "index.ts",
"type": "module",
"devDependencies": {
"@types/bun": "latest",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/multer": "^1.4.11",
"@types/pg": "^8.11.6",
"@types/uuid": "^10.0.0",
"nodemon": "^3.1.4"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"scripts": {
"dev": "tsx watch ./src/index.ts",
"start": "tsx ./src/index.ts",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.614.0",
"@t3-oss/env-nextjs": "^0.10.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.32.0",
"express": "^4.19.2",
"multer": "^1.4.5-lts.1",
"next-auth": "^4.24.7",
"pg": "^8.12.0",
"tsx": "^4.16.2",
"uuid": "^10.0.0",
"zod": "^3.23.8"
}
}