This repository has been archived by the owner on Feb 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·66 lines (66 loc) · 2.72 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
59
60
61
62
63
64
65
66
{
"name": "medieninformatik-5.0",
"version": "0.0.1",
"description": "Static Page Generation für die Reakkreditierung der Medieninformatik an der TH Köln",
"main": "index.js",
"scripts": {
"lint:css": "stylelint src/assets/styles/**/*.scss",
"lint:css:fix": "stylelint src/assets/styles/**/*.scss --fix",
"lint:js": "eslint src/scripts/**/*.js",
"lint:js:fix": "eslint src/scripts/**/*.js --fix",
"dev:css": "sass src/assets/styles/scss/main.scss:src/assets/styles/main.css",
"watch:sass": "sass --update --watch src/assets/styles/scss/main.scss:src/compiled-assets/main.css",
"watch": "npm-run-all --parallel dev:css watch:*",
"build:css": "sass --load-path src/assets/styles/scss src/assets/styles/scss/main.scss src/compiled-assets/main.css --style compressed",
"build:site": "npx cross-env ELEVENTY_ENV=production npx eleventy",
"del:docs": "rimraf ./docs",
"del:assets": "rimraf ./src/compiled-assets",
"serve:11ty": "npx cross-env ELEVENTY_ENV=development npx eleventy --serve --watch --port=8080",
"serve:11ty-quiet": "npx cross-env ELEVENTY_ENV=development npx eleventy --quiet --serve --watch --port=8080",
"serve:prod": "serve ./docs/",
"dev": "npm-run-all del:docs build:css --parallel watch serve:11ty",
"quiet": "npm-run-all del:docs build:css --parallel watch serve:11ty-quiet",
"build": "npm-run-all del:docs del:assets build:css build:site",
"live": "npm run build && npm run serve:prod",
"convert:comp": "node ./kompetenzen/competence-data-importer.js",
"lint": "stylelint src/assets/styles/scss/**/*.scss",
"lint:fix": "stylelint src/assets/styles/scss/**/*.scss --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cnoss/fd-2021.git"
},
"author": "Christian Noss",
"license": "ISC",
"bugs": {
"url": "https://github.com/cnoss/fd-2021/issues"
},
"homepage": "https://github.com/cnoss/fd-2021#readme",
"devDependencies": {
"@11ty/eleventy": "^2.0.0",
"concat-glob-cli": "^0.1.0",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"eslint": "^7.29.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"html-minifier": "^4.0.0",
"js-yaml": "^4.1.0",
"md5-file": "^5.0.0",
"npm-run-all": "^4.1.5",
"reveal.js": "^4.1.3",
"rimraf": "^3.0.2",
"sass": "^1.35.1",
"stylelint": "^15.11.0",
"stylelint-config-idiomatic-order": "^9.0.0",
"stylelint-config-recommended-scss": "^13.1.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-order": "^6.0.3",
"stylelint-scss": "^5.3.1"
},
"dependencies": {
"fast-glob": "^3.3.1",
"node-html-parser": "^6.1.10"
}
}