-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.84 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.84 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
{
"name": "packzen",
"type": "module",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"dev": "npm run version:generate:dev && npm run sw:generate && astro dev",
"build": "npm run validate:data && npm run version:generate && npm run sw:generate && astro build",
"preview": "astro preview",
"test": "node --import tsx --test tests/d1-api.test.ts tests/backup.test.ts",
"astro": "astro",
"version:generate": "node scripts/generate-version.js",
"version:generate:dev": "NODE_ENV=development node scripts/generate-version.js",
"sw:generate": "node scripts/generate-sw.js",
"validate:data": "node scripts/validate-built-in-items.js",
"db:generate": "drizzle-kit generate",
"db:migrate": "wrangler d1 migrations apply packzen-db --local",
"db:migrate:prod": "wrangler d1 migrations apply packzen-db --remote",
"db:studio": "drizzle-kit studio",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "node scripts/setup-git-hooks.js"
},
"dependencies": {
"@astrojs/cloudflare": "^12.6.12",
"@astrojs/solid-js": "^5.1.3",
"@clerk/astro": "^2.16.7",
"@clerk/clerk-js": "^5.114.1",
"@cloudflare/workers-types": "^4.20251212.0",
"@tailwindcss/vite": "^4.1.18",
"@thisbeyond/solid-dnd": "^0.7.5",
"astro": "^5.16.5",
"drizzle-orm": "^0.45.1",
"js-yaml": "^4.1.1",
"papaparse": "^5.5.3",
"solid-js": "^1.9.10",
"svix": "^1.82.0",
"tailwindcss": "^4.1.18",
"zod": "^4.1.13"
},
"devDependencies": {
"@miniflare/d1": "^2.14.4",
"@types/js-yaml": "^4.0.9",
"@types/papaparse": "^5.5.2",
"better-sqlite3": "^12.5.0",
"drizzle-kit": "^0.31.8",
"prettier": "^3.7.4",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"tsx": "^4.21.0",
"wrangler": "^4.54.0"
}
}