-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.46 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.46 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
{
"name": "rin",
"version": "0.3.0",
"workspaces": [
"packages/*",
"cli",
"server",
"client"
],
"private": true,
"scripts": {
"dev": "bun cli/bin/rin.ts dev",
"dev:setup": "bun cli/bin/rin.ts setup-dev",
"dev:client": "bun cli/bin/rin.ts dev --client",
"dev:server": "bun cli/bin/rin.ts dev --server",
"dev:hot": "bun cli/bin/rin.ts dev",
"dev:cron": "bun wrangler dev --port 11498 --test-scheduled",
"test": "bun test",
"test:server": "bun --filter './server' test",
"test:server:watch": "bun --filter './server' test --watch",
"test:coverage": "bun test --coverage",
"db:migrate": "bun cli/bin/rin.ts db migrate",
"db:generate": "bun --filter './server' db:gen",
"db:fix": "bun cli/bin/rin.ts db fix-top-field",
"check": "turbo check",
"deploy": "bun cli/bin/rin.ts deploy",
"build": "bun run build:client && bun run build:server",
"build:all": "turbo build",
"build:client": "bun --filter './client' build",
"build:server": "mkdir -p ./dist/server && bunx wrangler deploy --dry-run --outdir=dist/server",
"i18n:extract": "bun --filter './client' i18n",
"clean": "rm -rf dist node_modules client/node_modules server/node_modules .turbo wrangler.toml client/.env .dev.vars",
"format:check": "turbo format:check",
"format:write": "turbo format:write",
"release": "bun cli/bin/rin.ts release"
},
"devDependencies": {
"turbo": "^1.13.3",
"wrangler": "4.71.0"
}
}