-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.81 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.81 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "toolbox",
"private": true,
"version": "1.0.10",
"type": "module",
"scripts": {
"dev": "vite",
"lint": "biome check .",
"lint:fix": "biome check --fix .",
"build-only": "vite build",
"build": "pnpm run cf-typegen && pnpm run type-check && pnpm run build-only",
"preview": "pnpm run build && wrangler dev",
"type-check": "vue-tsc --build",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"db:gen": "dotenv -e .dev.vars -- drizzle-kit generate",
"db:migrate:local": "wrangler d1 migrations apply DB --local",
"db:migrate:prod": "wrangler d1 migrations apply DB --remote",
"db:reset": "npm run clean:d1 && npm run db:migrate:local",
"db:studio:local": "DB_PATH=$(find .wrangler/state/v3/d1 -name '*.sqlite' | head -n 1) && export DB_PATH && echo \"Connecting to $DB_PATH\" && npx drizzle-kit studio --config drizzle.local.config.ts",
"db:studio:prod": "dotenv -e .dev.vars -- drizzle-kit studio --config drizzle.prod.config.ts",
"deploy": "pnpm run build && wrangler deploy",
"cf-typegen": "wrangler types",
"clean": "rm -rf .wrangler dist build node_modules/.cache",
"clean:d1": "rm -rf .wrangler/state/v3/d1",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"script:generate-wiegand-registry": "dotenv -e .dev.vars -- tsx --max-old-space-size=4096 scripts/generate-wiegand-registry/index.ts"
},
"dependencies": {
"@codemirror/lang-json": "6.0.2",
"@codemirror/language": "6.12.3",
"@codemirror/lint": "6.9.5",
"@codemirror/state": "6.6.0",
"@codemirror/view": "6.41.0",
"@lezer/highlight": "1.2.3",
"anpr-wiegand": "2.0.1",
"codemirror": "6.0.2",
"colord": "2.9.3",
"drizzle-orm": "0.45.2",
"he": "1.2.0",
"jsonrepair": "3.13.3",
"qr-scanner": "1.4.2",
"qrcode": "1.5.4",
"valibot": "1.3.1",
"vue": "3.5.32",
"vue-router": "5.0.4"
},
"devDependencies": {
"@aws-sdk/client-s3": "3.1024.0",
"@aws-sdk/lib-storage": "3.1024.0",
"@biomejs/biome": "2.4.10",
"@cloudflare/vite-plugin": "1.31.0",
"@storybook/addon-docs": "10.3.4",
"@storybook/vue3-vite": "10.3.4",
"@tsconfig/node24": "24.0.4",
"@types/he": "1.2.3",
"@types/node": "25.5.2",
"@types/qrcode": "1.5.6",
"@vitejs/plugin-vue": "6.0.5",
"@vitest/coverage-v8": "4.1.2",
"@vitest/ui": "4.1.2",
"@vue/tsconfig": "0.9.1",
"better-sqlite3": "12.8.0",
"dotenv-cli": "11.0.0",
"drizzle-kit": "0.31.10",
"jsdom": "29.0.1",
"storybook": "10.3.4",
"tsx": "^4.21.0",
"typescript": "6.0.2",
"vite": "8.0.3",
"vite-plugin-pwa": "1.2.0",
"vite-plugin-vue-devtools": "8.1.1",
"vitest": "4.1.2",
"vue-tsc": "3.2.6",
"wrangler": "4.80.0"
}
}