-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 2.2 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
49
50
51
52
53
{
"private": true,
"author": "Benjamin Seber <benjamin.seber@focus-shift.de> (https://www.focus-shift.de)",
"scripts": {
"lint": "eslint src",
"clean": "rm -rf $npm_package_config_outdir",
"predev": "npm run clean",
"dev": "concurrently 'npm:dev:*'",
"dev:eleventy": "NODE_ENV=development eleventy --serve --port 3000",
"dev:css": "NODE_ENV=development postcss src/static/css/*.css -d $npm_package_config_outdir/static/css --watch",
"dev:js": "NODE_ENV=development esbuild common=src/static/js/common/index.js toc=src/static/js/toc.js zammad=src/static/js/zammad.js klaro=src/static/js/klaro.js --bundle --outdir=$npm_package_config_outdir/static/js --watch",
"dev:jquery": "mkdir -p $npm_package_config_outdir/static/js && cp node_modules/jquery/dist/jquery.min.js $npm_package_config_outdir/static/js",
"prebuild": "npm run clean",
"build": "concurrently 'npm:build:*'",
"build:eleventy": "NODE_ENV=production eleventy",
"build:css": "NODE_ENV=production postcss src/static/css/*.css -d $npm_package_config_outdir/static/css",
"build:js": "NODE_ENV=production esbuild common=src/static/js/common/index.js toc=src/static/js/toc.js zammad=src/static/js/zammad.js klaro=src/static/js/klaro.js --bundle --outdir=$npm_package_config_outdir/static/js --minify",
"build:jquery": "mkdir -p $npm_package_config_outdir/static/js && cp node_modules/jquery/dist/jquery.min.js $npm_package_config_outdir/static/js"
},
"config": {
"outdir": "dist"
},
"dependencies": {
"@11ty/eleventy": "2.0.1",
"@11ty/eleventy-plugin-rss": "1.2.0",
"@eslint/js": "9.16.0",
"autoprefixer": "10.4.20",
"cheerio": "1.0.0",
"concurrently": "9.0.1",
"cssnano": "7.0.6",
"date-fns": "4.1.0",
"esbuild": "0.24.0",
"eslint": "9.16.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"globals": "15.9.0",
"html-minifier-terser": "7.2.0",
"http-server": "14.1.1",
"jquery": "3.7.1",
"lint-staged": "15.2.10",
"markdown-it": "14.1.0",
"markdown-it-anchor": "9.2.0",
"postcss": "8.4.49",
"postcss-cli": "11.0.0",
"prettier": "3.3.3",
"tailwindcss": "3.4.15",
"klaro": "0.7.22"
},
"lint-staged": {
"*.js": "eslint --fix",
"*.{css,html,md,svg}": "prettier --write"
}
}