-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.21 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "alwaysdata-doc",
"version": "1.0.0",
"description": "Help & documentation for alwaysdata's services.",
"license": "MIT",
"author": {
"name": "alwaysdata",
"email": "contact@alwaysdata.com",
"url": "https://www.alwaysdata.com/"
},
"type": "module",
"scripts": {
"clean": "rimraf ./_site ./.cache",
"start": "ELEVENTY_ENV=development npm-run-all --parallel watch:*",
"dev": "npm run start",
"build": "ELEVENTY_ENV=production NODE_ENV=production npm-run-all --serial build:*",
"watch:11ty": "eleventy --serve --quiet",
"build:11ty": "eleventy",
"watch:js": "esbuild ./src/assets/js/main.js --outfile=./_site/assets/js/main.js --bundle --watch --sourcemap",
"build:js": "esbuild ./src/assets/js/main.js --outfile=./_site/assets/js/main.js --bundle --minify",
"watch:css": "npx @tailwindcss/cli -i ./src/assets/css/main.css -o ./_site/assets/css/main.css --watch",
"build:css": "npx @tailwindcss/cli -i ./src/assets/css/main.css -o ./_site/assets/css/main.css --minify",
"postbuild": "npm-run-all --parallel postbuild:*",
"postbuild:pagefind": "pagefind --site ./_site",
"lint": "eslint .",
"format": "prettier --write .",
"debug": "DEBUG=Eleventy* eleventy --serve"
},
"devDependencies": {
"@11ty/eleventy": "^3.1.5",
"@11ty/eleventy-img": "^6.0.4",
"@11ty/eleventy-navigation": "^1.0.5",
"@11ty/eleventy-plugin-rss": "^3.0.0",
"@sindresorhus/slugify": "^3.0.0",
"@tailwindcss/cli": "^4.2.2",
"@types/markdown-it": "^14.1.2",
"@zachleat/table-saw": "^1.0.7",
"eleventy-plugin-i18n": "^0.1.3",
"eleventy-plugin-phosphoricons": "^2.0.0",
"eleventy-plugin-speculation-rules": "^2.0.0",
"esbuild": "^0.27.4",
"eslint": "^10.1.0",
"html-minifier-terser": "^7.2.0",
"js-cookie": "^3.0.8",
"js-yaml": "^4.1.1",
"linkedom": "^0.18.12",
"markdown-it-anchor": "^9.2.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-github-alerts": "^1.0.1",
"npm-run-all": "^4.1.5",
"pagefind": "^1.4.0",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"sharp": "^0.34.5",
"shiki": "^4.0.2",
"slugify": "^1.6.8",
"tailwindcss": "^4.2.2"
},
"engines": {
"node": ">=24.0.0"
}
}