-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.24 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
{
"name": "@joekarow/joekarow.dev",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "concurrently npm:dev:*",
"startdebug": "concurrently 'npm:setdebug' 'npm:css' 'npm:eleventy' 'npm:browsersync'",
"dev:browsersync": "browser-sync start --server '_site' --files '_site' --port 8080 --no-notify --no-open",
"dev:css": "postcss src/static/css/tailwind.css --o _site/static/css/style.css --watch",
"dev:eleventy": "eleventy --watch",
"setdebug": "set DEBUG=*",
"debug": "DEBUG=* eleventy",
"build": "NODE_ENV=production pnpm build:css && pnpm build:eleventy",
"build:eleventy": "eleventy",
"build:css": "tailwindcss -i src/static/css/tailwind.css -o _site/static/css/style.css"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@tailwindcss/typography": "^0.5",
"alpinejs": "^3",
"browser-sync": "^3.0.0",
"concurrently": "^8.0.0",
"cssnano": "^6.0.0",
"js-yaml": "^4",
"luxon": "^3.0.0",
"postcss-cli": "^11.0.0",
"prismjs": "^1",
"tailwindcss": "^3"
},
"dependencies": {
"@vercel/analytics": "^1.1.1",
"autoprefixer": "^10",
"html-minifier-terser": "^7.0.0-beta.0",
"postcss": "^8"
}
}