-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 912 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
29
30
31
{
"name": "kleinfreund.de",
"repository": "https://github.com/kleinfreund/kleinfreund.de",
"version": "2.0.0",
"license": "MIT",
"type": "module",
"scripts": {
"clean": "rimraf _site",
"build:site": "cross-env NODE_ENV=production eleventy",
"build:vinyl-collection-data": "node ./discogs/main.js",
"build": "run-s clean build:site",
"start:site": "cross-env NODE_ENV=development eleventy --serve",
"start": "run-s clean start:site"
},
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-plugin-rss": "^2.0.2",
"@types/node": "^22.9.0",
"cheerio": "^1.0.0",
"clean-css": "^5.3.3",
"cross-env": "^7.0.3",
"html-minifier": "^4.0.0",
"js-yaml": "^4.1.0",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"npm-run-all2": "^7.0.1",
"retrieve": "^2.0.0",
"rimraf": "^6.0.1",
"terser": "^5.36.0"
}
}