-
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) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.42 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
{
"name": "zerofans",
"private": true,
"version": "0.0.3",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "bun run dev:web & bun run dev:api & wait",
"dev:web": "bun run --cwd apps/web dev -- --host 0.0.0.0 --port 5174 --strictPort",
"dev:api": "bun run --cwd apps/api dev -- --port 8787",
"build:web": "bun run --cwd apps/web build",
"build:api": "bun run --cwd apps/api build",
"build:self-host": "bun build apps/api/src/server.ts --outdir apps/api/dist --target=bun",
"build:sdk": "cd packages/sdk && bun run build",
"typecheck": "bun run --cwd apps/web typecheck && bun run --cwd apps/api typecheck",
"test:api-contract": "bash apps/api/scripts/run-contract-suite.sh",
"test:seo-contract": "bun run --cwd apps/web build && bun run --cwd apps/web test:seo-contract",
"test:skills-contract": "bash apps/api/scripts/run-skills-contract.sh",
"test:rpc-sync": "bun run --cwd apps/api test:rpc-sync",
"docker:up": "docker compose up",
"docker:build": "docker compose build"
},
"dependencies": {
"@hono/trpc-server": "^0.4.2",
"@neondatabase/serverless": "^1.1.0",
"@noble/ed25519": "^3.1.0",
"@trpc/client": "^11.17.0",
"@trpc/server": "^11.17.0",
"bcryptjs": "^3.0.3",
"postgres": "^3.4.9"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.1051.0",
"@hono/node-server": "^2.0.3",
"@types/bcryptjs": "^3.0.0"
}
}