-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
29 lines (29 loc) · 1.07 KB
/
package.json
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
{
"name": "jamesbvaughan.com",
"description": "james' blog",
"repository": "git@github.com:jamesbvaughan/jamesbvaughan.com.git",
"author": "James Vaughan <james@jamesbvaughan.com>",
"scripts": {
"build": "hugo --minify --printPathWarnings",
"build:cloudflare": "bun run build --baseURL https://jamesbvaughan.com",
"dev:hugo": "hugo server --buildDrafts --printPathWarnings",
"dev:wrangler": "bunx wrangler pages dev --live-reload",
"dev": "bunx concurrently --names hugo,wrangler \"bun run dev:hugo --disableFastRender --disableLiveReload\" \"bun run dev:wrangler\"",
"format": "prettier --write ."
},
"dependencies": {
"fast-xml-parser": "^4.5.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241106.0",
"@tailwindcss/cli": "next",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.28.0",
"prettier": "^3.3.3",
"prettier-plugin-go-template": "^0.0.15",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "next",
"typescript": "^5.6.3"
}
}