-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
48 lines (48 loc) · 1.55 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
38
39
40
41
42
43
44
45
46
47
48
{
"name": "timber-docs",
"private": true,
"description": "Timber Documentation",
"scripts": {
"build": "composer install && npm install && npm run cleanup && npm run generate-docs && npm run production",
"generate-docs": "bash generate-docs.sh",
"watch": "npm run generate-docs && concurrently \"npm run serve\" \"npm run mix-watch\"",
"develop": "ELEVENTY_ENV=development concurrently \"npm run mix-development\" \"npx eleventy\"",
"production": "ELEVENTY_ENV=production npm run mix-production && npx eleventy",
"serve": "ELEVENTY_ENV=development npx eleventy --serve",
"eleventy-develop": "ELEVENTY_ENV=development npx eleventy",
"mix-development": "mix",
"mix-production": "mix --production",
"mix-watch": "mix watch",
"cleanup": "rm -rf ./content",
"debug": "DEBUG=Eleventy* npx eleventy"
},
"engines": {
"node": ">=18.2"
},
"dependencies": {
"lodash.debounce": "^4.0.8",
"normalize.css": "^8.0.1",
"turbolinks": "^5.2.0"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-plugin-rss": "^1.0",
"cheerio": "^1.0.0",
"concurrently": "^9.0",
"cross-env": "^7.0.3",
"eleventy-plugin-toc": "^1.1.5",
"eslint": "^9.11",
"eslint-plugin-prettier": "^5.2.1",
"html-minifier": "^4.0.0",
"laravel-mix": "^6.0.49",
"luxon": "^3.5.0",
"markdown-it": "^14.1",
"markdown-it-anchor": "^9.2",
"nunjucks": "^3.2.4",
"postcss": "^8.4.47",
"prismjs": "^1.29.0",
"sass": "^1.79.3",
"sass-loader": "^16.0",
"slugify": "^1.6.6"
}
}