-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2 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
{
"name": "johnhooks.io",
"version": "0.1.0",
"type": "module",
"private": true,
"packageManager": "pnpm@10.24.0",
"homepage": "https://github.com/johnhooks/johnhooks.github.io#readme",
"bugs": "https://github.com/johnhooks/johnhooks.github.io/issues",
"repository": {
"type": "git",
"url": "https://github.com/johnhooks/johnhooks.github.io.git"
},
"author": {
"name": "John Hooks",
"url": "https://johnhooks.io"
},
"license": "MIT",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"deploy": "pnpm build && wrangler deploy --env production",
"deploy:staging": "pnpm build && wrangler deploy --env staging",
"prepare": "svelte-kit sync",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write ."
},
"devDependencies": {
"@bitmachina/highlighter": "^1.0.0-alpha.6",
"@cloudflare/workers-types": "^4.20241218.0",
"@eslint/js": "^9.39.2",
"@sveltejs/adapter-cloudflare": "^7.2.4",
"@sveltejs/kit": "^2.15.1",
"@sveltejs/vite-plugin-svelte": "^5.0.2",
"@tailwindcss/typography": "^0.5.15",
"@types/lodash-es": "^4.17.12",
"autoprefixer": "^10.4.20",
"eslint": "^9.39.2",
"eslint-plugin-svelte": "^3.13.1",
"globals": "^16.5.0",
"hast-util-select": "^6.0.3",
"hast-util-to-string": "^3.0.1",
"hastscript": "^9.0.0",
"mdsvex": "^0.12.3",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.2",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.0",
"svelte": "^5.16.0",
"svelte-check": "^4.1.1",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"typescript-eslint": "^8.50.0",
"vite": "^6.0.6",
"wrangler": "^4"
},
"dependencies": {
"lodash-es": "^4.17.21",
"zod": "^3.24.1"
}
}