-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.79 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.79 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "civup",
"type": "module",
"private": true,
"packageManager": "bun@1.3.7",
"scripts": {
"dev": "bun scripts/dev.ts",
"dev:new": "bun scripts/dev.ts --rebuild-activity",
"dev:live": "bun scripts/dev.ts --activity-live",
"test": "bun run --filter '*' test",
"test:e2e": "bun run --filter civup-bot test:e2e",
"test:cov": "bun test --coverage --coverage-reporter=text --coverage-reporter=lcov --coverage-dir=coverage",
"test:ui": "bun-test-ui -p 51299",
"lint": "eslint . --fix",
"check": "bun run --filter '*' check",
"a:dev": "bun run --filter civup-activity dev",
"a:dev:new": "bun run --filter civup-activity dev:new",
"a:dev:live": "bun run --filter civup-activity dev:live",
"a:build": "bun run --filter civup-activity build",
"a:deploy": "bun run --filter civup-activity deploy:prod",
"a:deploy:prod": "bun run --filter civup-activity deploy:prod",
"bot:dev": "bun run --filter civup-bot dev",
"bot:deploy": "bun run --filter civup-bot deploy:prod",
"bot:deploy:prod": "bun run --filter civup-bot deploy:prod",
"bot:register": "bun run --filter civup-bot register:dev",
"bot:register:prod": "bun run --filter civup-bot register:prod",
"bot:test:e2e": "bun run --filter civup-bot test:e2e",
"bot:test:capacity": "bun run --filter civup-bot test:capacity",
"bot:secrets:prod": "bun run --filter civup-bot secret:bulk:prod",
"a:secrets:prod": "bun run --filter civup-activity secret:bulk:prod",
"bot:d1:create": "bun run --filter civup-bot d1:create",
"bot:kv:create": "bun run --filter civup-bot kv:create",
"bot:kv:local": "bun run --filter civup-bot kv:local",
"bot:l:migrate": "bun run --filter civup-bot l:migrate",
"bot:r:migrate": "bun run --filter civup-bot r:migrate",
"db:generate": "bun run --filter @civup/db generate",
"db:studio": "bun run --filter @civup/db studio",
"tunnel": "cloudflared --config cloudflared.dev.yml tunnel run civup-dev",
"deploy:prod": "bun run bot:r:migrate && bun run bot:deploy:prod && bun run a:deploy:prod",
"deploy:prod:full": "bun run deploy:prod && bun run bot:register:prod",
"cf:usage:snapshot": "bun scripts/cloudflare-usage.ts snapshot",
"cf:usage:diff": "bun scripts/cloudflare-usage.ts diff",
"clean": "bun scripts/clean.ts",
"update": "taze latest -wr"
},
"devDependencies": {
"@antfu/eslint-config": "^7.2.0",
"@types/bun": "latest",
"@typescript/native-preview": "^7.0.0-dev.20260206.1",
"@unocss/eslint-plugin": "^66.6.0",
"better-sqlite3": "^12.6.2",
"bun-test-ui": "^0.2.2",
"discord-api-types": "^0.38.38",
"eslint": "^9.39.2",
"eslint-plugin-format": "^1.3.1",
"eslint-plugin-solid": "^0.14.5",
"taze": "^19.9.2"
},
"workspaces": [
"apps/*",
"packages/*"
]
}