-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
64 lines (64 loc) · 2.01 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
{
"name": "coli-conc.gbv.de",
"version": "1.0.0",
"description": "The new coli-conc homepage",
"repository": {
"type": "git",
"url": "git+https://github.com/gbv/coli-conc.gbv.de.git"
},
"type": "module",
"author": "Stefan Peters",
"license": "MIT",
"bugs": {
"url": "https://github.com/gbv/coli-conc.gbv.de/issues"
},
"homepage": "https://github.com/gbv/coli-conc.gbv.de",
"main": "index.js",
"engines": {
"node": ">=18"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint",
"fix": "eslint --fix",
"lint-staged": "lint-staged",
"sass": "sass --no-source-map _scss:_includes/css",
"serve": "npm run copyStaticDependencies && (sleep 5 && echo 'Warning: Only the English site will be served.') & npm run sass -- --watch & eleventy --serve",
"copyStaticDependencies": "mkdir -p js && cp node_modules/axios/dist/axios.min.js js/axios.min.js && cp node_modules/vue/dist/vue.global.prod.js js/vue.min.js",
"build": "node scripts/build.js",
"build-gh": "node scripts/build.js --pathprefix=coli-conc.gbv.de --url=https://gbv.github.io",
"build-local": "node scripts/build.js --pathprefix=coli-conc-next --url=http://localhost/coli-conc-next/",
"prepare": "husky || true"
},
"lint-staged": {
"**/*.js": [
"eslint --fix"
]
},
"dependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-plugin-rss": "^2.0.2",
"axios": "^1.7.9",
"dotenv": "^16.4.7",
"html-minifier-terser": "^7.2.0",
"js-yaml": "^4.1.0",
"jskos-tools": "^1.0.43",
"lodash": "^4.17.21",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-multimd-table": "^4.2.3",
"meow": "^13.2.0",
"moment": "^2.30.1",
"sass": "^1.83.0",
"sharp": "^0.33.5",
"vue": "^3.5.13"
},
"devDependencies": {
"eslint": "~9.16",
"eslint-config-gbv": "~2.6",
"fs-extra": "^11.2.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11"
}
}