-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 824 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"private": true,
"type": "module",
"scripts": {
"build": "npm run check:docs && npm run clean && npm run build:css && npm run build:11ty",
"build:css": "npx @tailwindcss/cli -i website/assets/index.css -o dist/assets/index.css --minify",
"build:11ty": "npx @11ty/eleventy --input=website --output=dist",
"clean": "rm -rf dist",
"dev": "concurrently npm:watch:css npm:watch:11ty",
"check:docs": "node scripts/check-docs.mjs",
"watch:css": "npx @tailwindcss/cli -i website/assets/index.css -o dist/assets/index.css --watch",
"watch:11ty": "npx @11ty/eleventy --input=website --output=dist --serve --watch"
},
"devDependencies": {
"@11ty/eleventy": "^3.1.5",
"@tailwindcss/cli": "^4",
"@tailwindcss/forms": "^0.5",
"concurrently": "^9",
"tailwindcss": "^4"
}
}