-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.73 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 2.73 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
{
"name": "bmz-ir",
"type": "module",
"private": true,
"license": "GPL-3.0-only",
"scripts": {
"dev": "TMPDIR=/tmp nuxt dev",
"build": "bun run build:nuxt && bun run license:web:bundle",
"build:nuxt": "nuxt build",
"worker:dry-run": "wrangler deploy --config .output/server/wrangler.json --dry-run --outdir .output/worker-bundle --metafile",
"license:web": "node scripts/generate-web-license-report.mjs --metafile .output/worker-bundle/bundle-meta.json --sourcemap-root .output/server --output .output/public/licenses/web-dependency-licenses.txt --output bmz-ir-web/public/licenses/web-dependency-licenses.txt",
"license:web:bundle": "bun run worker:dry-run && bun run license:web",
"deploy": "wrangler deploy --config .output/server/wrangler.json",
"cf:types": "wrangler types bmz-ir-web/shared/types/worker-configuration.d.ts --config .output/server/wrangler.json --include-runtime false",
"db:generate": "nuxt db generate",
"db:migrate": "wrangler d1 migrations apply DB --local",
"db:migrate:remote": "wrangler d1 migrations apply DB --remote",
"db:export": "wrangler d1 export DB --local --no-schema --output .wrangler/exported.sql",
"db:export:remote": "wrangler d1 export DB --remote --no-schema --output .wrangler/exported.sql",
"db:execute": "wrangler d1 execute DB --local",
"db:execute:exported": "wrangler d1 execute DB --local --file .wrangler/exported.sql",
"db:execute:remote": "wrangler d1 execute DB --remote",
"db:execute:remote:exported": "wrangler d1 execute DB --remote --file .wrangler/exported.sql",
"generate": "nuxt generate",
"preview": "nuxt preview",
"test:ir": "bun test bmz-ir-web/server/services/ir.test.ts bmz-ir-web/server/services/daily_report.test.ts bmz-ir-web/server/services/difficulty_tables.test.ts bmz-ir-web/server/utils/admin.test.ts bmz-ir-web/server/utils/auth_input.test.ts bmz-ir-web/server/utils/auth_token_policy.test.ts bmz-ir-web/server/utils/provider_key.test.ts bmz-ir-web/server/utils/rate_limit.test.ts bmz-ir-web/server/utils/score_history_query.test.ts",
"test:i18n": "bun test i18n/locales/catalog.test.ts",
"postinstall": "nuxt prepare"
},
"dependencies": {
"@libsql/client": "^0.17.3",
"@nuxt/ui": "4.8.2",
"@nuxthub/core": "^0.10.7",
"@nuxtjs/i18n": "^10.4.0",
"drizzle-orm": "^0.45.2",
"nuxt": "^4.4.8",
"nuxt-auth-utils": "^0.5.29",
"tailwindcss": "^4.3.1"
},
"devDependencies": {
"@iconify-json/lucide": "^1.2.112",
"@nuxt/eslint": "^1.16.0",
"@types/bun": "^1.3.14",
"drizzle-kit": "^0.31.10",
"prettier": "3.8.4",
"vue-tsc": "^3.3.5",
"wrangler": "^4.100.0"
},
"overrides": {
"chokidar": "3.6.0",
"vite": "^8.0.0",
"vue": "^3.6.0-beta.15"
}
}