-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.93 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.93 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
{
"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 webpack:watch\"",
"develop": "ELEVENTY_ENV=development concurrently \"npm run webpack:dev\" \"npx eleventy\"",
"production": "ELEVENTY_ENV=production npm run webpack:production && ELEVENTY_ENV=production npx eleventy",
"serve": "ELEVENTY_ENV=development npx eleventy --serve",
"eleventy-develop": "ELEVENTY_ENV=development npx eleventy",
"webpack:dev": "webpack --mode development",
"webpack:production": "webpack --mode production",
"webpack:watch": "webpack --mode development --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": "^3.1.5",
"@11ty/eleventy-plugin-rss": "^3.0.0",
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"autoprefixer": "^10.5.0",
"babel-loader": "^10.1",
"cheerio": "^1.2.0",
"concurrently": "^9.2",
"copy-webpack-plugin": "^14.0",
"cross-env": "^10.1.0",
"css-loader": "^7.1.4",
"eslint": "^10.2",
"eslint-plugin-prettier": "^5.5.5",
"html-minifier": "^4.0.0",
"luxon": "^3.7.2",
"markdown-it": "^14.1",
"markdown-it-anchor": "^9.2",
"mini-css-extract-plugin": "^2.10.2",
"nunjucks": "^3.2.4",
"postcss": "^8.5.10",
"postcss-loader": "^8.2.1",
"prismjs": "^1.30.0",
"sass": "^1.99.0",
"sass-loader": "^16.0",
"slugify": "^1.6.9",
"webpack": "^5.106.2",
"webpack-cli": "^7.0",
"webpack-manifest-plugin": "^5.0.1"
}
}