-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.64 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
{
"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": "astro dev",
"build": "astro build",
"preview": "astro preview",
"deploy": "pnpm build && wrangler deploy --env production --name website --domain johnhooks.io --domain www.johnhooks.io --var ENVIRONMENT:production --var SITE_URL:https://johnhooks.io",
"deploy:staging": "pnpm build && wrangler deploy --env staging --name website-staging --var ENVIRONMENT:staging --var SITE_URL:https://website-staging.johnhooks.workers.dev",
"check": "astro check",
"test": "vitest run",
"lint": "prettier --check . && eslint .",
"format": "prettier --write ."
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"@astrojs/cloudflare": "^13.5.4",
"@astrojs/mdx": "^5.0.6",
"@cloudflare/workers-types": "^4.20260523.1",
"@eslint/js": "^10.0.1",
"@shikijs/transformers": "^4.1.0",
"astro": "^6.3.7",
"eslint": "^10.4.0",
"globals": "^17.6.0",
"prettier": "^3.8.3",
"prettier-plugin-astro": "^0.14.1",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.4",
"vitest": "^4.1.7",
"wrangler": "^4.94.0"
}
}