-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 1013 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 1013 Bytes
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
{
"name": "reallysimpledocs",
"version": "0.1.3",
"type": "module",
"scripts": {
"basecoat": "cp node_modules/basecoat-css/dist/js/all.min.js assets/basecoat.min.js",
"clean": "node --input-type=module -e \"import fs from 'node:fs'; fs.rmSync('_site', { recursive: true, force: true });\"",
"build": "npm run clean && npm run basecoat && npx tailwindcss -i ./src/css/styles.css -o ./assets/styles.css --minify && npx @11ty/eleventy",
"dev": "npm run basecoat && concurrently \"npx @11ty/eleventy --serve\" \"npx tailwindcss -i ./src/css/styles.css -o ./assets/styles.css --watch\""
},
"dependencies": {
"@11ty/eleventy": "^3.1.2",
"@grimlink/eleventy-plugin-lucide-icons": "^2.1.8",
"@tailwindcss/cli": "^4.1.11",
"basecoat-css": "^0.3.7",
"eleventy-plugin-toc": "^1.1.5",
"lucide-static": "^0.552.0",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"tailwindcss": "^4.1.11"
},
"devDependencies": {
"concurrently": "^9.2.0"
}
}