-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.21 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
{
"name": "website",
"packageManager": "pnpm@11.5.2",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "eslint . && tsx tooling/lint/index.ts",
"lint:eslint": "eslint .",
"lint:seo": "tsx tooling/lint/index.ts --category seo",
"lint:ui": "tsx tooling/lint/index.ts --category ui",
"lint:llm": "tsx tooling/lint/index.ts --category llm",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"lighthouse": "lhci autorun",
"compile:pcd": "tsx tooling/pcd/index.ts",
"compile:api": "tsx tooling/api/index.ts",
"compile:elo": "tsx tooling/elo/index.ts",
"worker:dev": "wrangler dev -c worker/wrangler.jsonc",
"worker:migrate": "wrangler d1 migrations apply dictionarry-clicks --local -c worker/wrangler.jsonc"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260609.1",
"@eslint/js": "^10.0.1",
"@icons-pack/svelte-simple-icons": "^7.2.0",
"@lhci/cli": "^0.15.1",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.57.0",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@tailwindcss/vite": "^4.2.2",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24",
"better-sqlite3": "^12.10.0",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.17.0",
"globals": "^17.4.0",
"katex": "^0.17.0",
"mdsvex": "^0.12.7",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.5.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"rehype-katex-svelte": "^1.2.0",
"remark-footnotes": "2.0.0",
"remark-math": "3.0.0",
"svelte": "^5.55.2",
"svelte-check": "^4.4.6",
"tailwindcss": "^4.2.2",
"tsx": "^4.22.4",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1",
"vite": "^8.0.7",
"vitest": "^4.1.8",
"wrangler": "^4.99.0"
},
"dependencies": {
"@lucide/svelte": "^1.17.0",
"marked": "^18.0.5",
"plyr": "^3.8.4",
"rehype-slug": "^6.0.0",
"shiki": "^4.2.0"
}
}