-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.6 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"$schema": "https://json.schemastore.org/package.json",
"name": "bensmith.sh",
"type": "module",
"version": "0.0.2",
"description": "My website",
"license": "MIT",
"scripts": {
"clean": "rm -rf _site && rm -f src/assets/styles.css",
"debug:dev": "DEBUG=Eleventy* npm run dev",
"debug:build": "DEBUG=Eleventy* npm run build",
"dev": "run-p dev:*",
"dev:11ty": "eleventy --serve --incremental",
"dev:tailwind": "tailwindcss -w -i src/styles/styles.css -o src/assets/styles.css",
"build": "run-s build:tailwind build:11ty",
"build:11ty": "rm -rf _site && eleventy",
"build:tailwind": "tailwindcss -m -i src/styles/styles.css -o src/assets/styles.css",
"preview": "npm run build && eleventy-dev-server --port 2323 --dir _site --no-domdiff",
"serve": "node server/index.js",
"serve:watch": "node --watch-paths=server server/index.js"
},
"devDependencies": {
"@11ty/eleventy": "^3.0.0-beta.1",
"@11ty/eleventy-plugin-directory-output": "^1.0.1",
"@11ty/eleventy-plugin-rss": "^2.0.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@11ty/eleventy-plugin-webc": "^0.11.2",
"@sindresorhus/slugify": "^2.2.1",
"@tailwindcss/cli": "^4.0.0-alpha.24",
"eslint": "^9.11.1",
"markdown-it-anchor": "^9.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"tailwindcss": "^4.0.0-alpha.24"
},
"dependencies": {
"nanoid": "^5.0.7",
"polka": "^0.5.2",
"sirv": "^2.0.4",
"zod": "^3.23.8"
},
"imports": {
"#config/*.js": "./config/*.js",
"#server/*.js": "./server/*.js",
"#src/*.js": "./src/*.js"
}
}