-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.75 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.75 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
{
"name": "astro-feature-map",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "eslint .",
"format": "prettier --write .",
"test": "vitest run",
"test:e2e": "playwright test",
"test:unit": "vitest run",
"test:coverage": "vitest run --coverage",
"db:generate": "drizzle-kit generate:sqlite",
"db:migrate:local": "wrangler d1 migrations apply astro-feature-map --local",
"db:migrate:prod": "wrangler d1 migrations apply astro-feature-map --remote",
"db:studio": "drizzle-kit studio",
"db:seed": "node --import=drizzle-orm/d1-raw.js drizzle/seed.js",
"db:seed:local": "wrangler d1 execute astro-feature-map --local --command=\"$(cat drizzle/seed.sql)\"",
"reset:db": "rm -rf .wrangler/state && npx wrangler d1 execute astro-feature-map --local --file=drizzle/migrations/0000_lazy_mole_man.sql && npx wrangler d1 execute astro-feature-map --local --file=drizzle/migrations/0001_true_namora.sql && npx wrangler d1 execute astro-feature-map --local --file=drizzle/seed.sql",
"pretest:e2e": "pnpm reset:db",
"pages:deploy": "vite build && wrangler pages deploy ./build"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260304.0",
"@playwright/test": "^1.49.0",
"@sveltejs/adapter-cloudflare": "^7.2.8",
"@sveltejs/adapter-static": "^3.0.8",
"@sveltejs/kit": "^2.15.0",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@tailwindcss/typography": "^0.5.19",
"@types/better-sqlite3": "^7.6.13",
"@types/eslint": "^9.6.1",
"@types/jsdom": "^28.0.0",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"@vitest/browser": "^2.1.8",
"@vitest/coverage-v8": "4.0.18",
"autoprefixer": "^10.4.20",
"concurrently": "^9.2.1",
"dotenv": "^17.3.1",
"drizzle-kit": "^0.30.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.46.0",
"miniflare": "^4.20260302.0",
"playwright": "^1.49.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.0",
"svelte": "^5.16.0",
"svelte-check": "^4.1.0",
"tailwindcss": "^3.4.17",
"tsx": "^4.21.0",
"typescript": "^5.7.2",
"vite": "^5.4.0",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.0.18",
"vitest-browser-svelte": "^2.0.2",
"wrangler": "^3.92.0"
},
"dependencies": {
"@sentry/cloudflare": "^10.42.0",
"@sentry/sveltekit": "^10.42.0",
"better-sqlite3": "^12.6.2",
"dompurify": "^3.2.0",
"drizzle-orm": "^0.38.0",
"hono": "^4.7.0",
"isomorphic-dompurify": "^3.0.0",
"marked": "^15.0.0",
"toucan-js": "^4.1.1"
},
"type": "module"
}