-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 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
54
55
56
57
58
{
"name": "ingo-steinke.de",
"version": "4.6.0",
"description": "website about web developer Ingo Steinke",
"main": "index.html",
"scripts": {
"eslint": "eslint src",
"stylelint": "stylelint src/*.css src/_includes/*.css",
"build": "npm run eslint && npm run stylelint && npm run build:de && npm run build:en",
"build:de": "eleventy --config .eleventy.de.js && node_modules/.bin/postcss src/*.css --dir dist && babel src/js -d dist/js",
"build:en": "eleventy --config .eleventy.en.js && node_modules/.bin/postcss src/*.css --dir dist_en && babel src/js -d dist_en/js",
"dev": "npm run serve",
"serve": "npx http-server dist -p 1974 --cors &",
"serve:en": "npx http-server dist_en -p 1974 --cors &",
"pretest": "npm run build && npm run serve",
"test": "npm run codeceptjs",
"posttest": "pkill -f http-server",
"unserve": "pkill -f http-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openmindculture/ingo-steinke.de.git"
},
"author": "Ingo Steinke",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/openmindculture/ingo-steinke.de/issues"
},
"homepage": "https://github.com/openmindculture/ingo-steinke.de#readme",
"devDependencies": {
"@11ty/eleventy": "^2.0.0"
},
"dependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.1",
"autoprefixer": "^10.4.20",
"babel-preset-minify": "^0.5.2",
"clean-css": "^5.3.3",
"cssnano": "^7.0.6",
"eslint": "^9.9.1",
"globals": "^15.9.0",
"html-minifier-terser": "^7.2.0",
"http-server": "^14.1.1",
"postcss": "^8.4.45",
"postcss-cli": "^11.0.0",
"postcss-custom-properties": "^14.0.1",
"postcss-custom-selectors": "^8.0.1",
"postcss-import": "^16.1.0",
"precss": "^4.0.0",
"puppeteer": "^23.3.0",
"stylelint": "^16.9.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-standard": "^36.0.1"
}
}