-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.32 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
{
"name": "dashchat",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "dist/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "prisma generate && bun --watch backend/server.ts",
"dev:backend": "prisma generate && bun --watch backend/server.ts",
"dev:frontend": "cd frontend && bun run dev",
"dev:all": "bash -c \"trap 'kill 0' INT TERM EXIT; bun run dev:backend & bun run dev:frontend & wait\"",
"build": "tsc",
"typecheck": "tsc --noEmit",
"start": "bun dist/server.js",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev"
},
"author": "skm",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.1077.0",
"@aws-sdk/s3-request-presigner": "^3.1077.0",
"@prisma/adapter-pg": "^7",
"@prisma/client": "^7",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.1.4",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"jose": "^6.2.3",
"multer": "^2.2.0",
"open-graph-scraper": "^6.12.0",
"sharp": "^0.35.2"
},
"devDependencies": {
"@aws-sdk/client-sts": "^3.1077.0",
"@types/cors": "^2.8.19",
"@types/express": "^4",
"@types/multer": "^2.1.0",
"@types/node": "^26.0.1",
"prisma": "^7",
"typescript": "^6.0.3"
}
}