-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
28 lines (28 loc) · 980 Bytes
/
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
{
"name": "apheleia",
"version": "1.4.0",
"description": "Source code for www.thomas-anderson.net",
"author": "Thomas Anderson",
"homepage": "https://github.com/Driminary/thomas-anderson.net#README",
"scripts": {
"purge": "rm -Rf ./_build",
"build:html": "npx @11ty/eleventy",
"build:css": "npx postcss source/css/tailwind.css -o source/css/bundle.css --verbose",
"dev:build:html": "npx @11ty/eleventy --serve --quiet",
"dev:build:css": "npx postcss source/css/tailwind.css -o source/css/bundle.css --verbose --watch",
"dev": "concurrently 'npm:dev:build:*'",
"build": "MINIMISE=yes npm run build:css && npm run build:html",
"serve": "http-server _build -s"
},
"dependencies": {
"@11ty/eleventy": "3.0.0",
"autoprefixer": "10.4.20",
"axios": "1.7.9",
"concurrently": "9.1.2",
"cssnano": "7.0.6",
"http-server": "14.1.1",
"postcss": "8.5.1",
"postcss-cli": "11.0.0",
"tailwindcss": "3.4.17"
}
}