-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1 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
{
"name": "11ty-dotcom",
"type": "module",
"scripts": {
"start": "bun run --bun concurrently \"npm:dev:*\"",
"build": "bun run --bun concurrently \"npm:build:*\"",
"deploy": "concurrently \"npm:build:*\"",
"dev:11ty": "eleventy --serve --input=src",
"dev:css": "tailwindcss -i ./src/assets/css/tailwind.css -o ./_site/assets/css/style.css --watch",
"build:css": "tailwindcss -i ./src/assets/css/tailwind.css -o ./_site/assets/css/style.css",
"build:11ty": "eleventy --input=src",
"postinstall": "sh ./scripts/post_install.sh"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@tailwindcss/forms": "^0.5.6",
"@tailwindcss/typography": "^0.5.10",
"autoprefixer": "^10.4.16",
"bun-types": "latest",
"concurrently": "^8.2.2",
"markdown-it": "^13.0.1",
"netlify-cli": "^23.13.4",
"postcss": "^8.4.30",
"tailwindcss": "^3.3.3"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@11ty/eleventy-img": "^3.1.1"
}
}