-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 846 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 846 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
{
"name": "omg-webapp",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "bun run dev:server & bun run dev:client",
"dev:client": "vite --host 0.0.0.0",
"dev:server": "bun --watch src/server/index.ts",
"build": "bun run build:client && bun run build:server",
"build:client": "vite build",
"build:server": "bun build src/server/index.ts --target=bun --outdir=dist/server",
"start": "bun dist/server/index.js",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/bun": "latest",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"vite": "^6.0.3"
},
"dependencies": {
"@openai/codex-sdk": "^0.130.0",
"apexcharts": "^5.11.0",
"html2canvas": "^1.4.1",
"jspdf": "^4.2.1"
}
}