-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
80 lines (80 loc) · 2.27 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "cocoda",
"version": "1.11.3",
"jskos-api": "^1.0 || ^2.0",
"description": "Cocoda Mapping Tool",
"author": "Stefan Peters <[email protected]>",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"_prepare": "./bin/prepare.sh",
"dev": "npm run serve",
"start": "npm run serve",
"serve": "npm run _prepare; vite",
"build": "./build/build.sh",
"build-all": "./build/build-all.sh",
"lint": "eslint",
"fix": "eslint --fix",
"lint-staged": "lint-staged",
"build-info": "./build/build-info.js > ./build/build-info.json",
"manual": "make -BC docs",
"manual-pdf": "make -BC docs pdfs",
"release:patch": "./bin/release.sh patch",
"release:minor": "./bin/release.sh minor",
"release:major": "./bin/release.sh major",
"kos-types": "wget http://api.dante.gbv.de/voc/top?uri=http://w3id.org/nkos/nkostype -O config/kos-types.json"
},
"lint-staged": {
"**/*.{js,vue}": [
"eslint"
],
"**/*.json": [
"./bin/format-json.js"
]
},
"gitHooks": {
"pre-commit": "lint-staged",
"post-commit": "npm run build-info",
"post-receive": "npm run build-info"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/vue-fontawesome": "latest-2",
"axios": "^1.7.7",
"bootstrap-vue": "^2.23.1",
"cocoda-sdk": "^3.4.12",
"cocoda-vue-tabs": "^0.1.12",
"css-element-queries": "^1.2.3",
"file-saver": "^2.0.5",
"gbv-login-client": "^2.0.1",
"jskos-tools": "^1.0.42",
"json-format-highlight": "^1.0.4",
"localforage": "^1.10.0",
"lodash": "^4.17.21",
"vue": "^2.7.16",
"vue-flexible-table": "^0.4.0",
"vue-i18n": "^8.28.2",
"vue-router": "^3.6.5",
"vue-scrollto": "^2.20.0",
"vue-virtual-scroll-list": "^2.3.5",
"vuex": "^3.6.2"
},
"devDependencies": {
"@vitejs/plugin-legacy": "^5.4.3",
"@vitejs/plugin-vue2": "^2.3.1",
"eslint": "~9.12",
"eslint-config-gbv": "~2.2",
"less": "^4.2.0",
"less-loader": "^12.2.0",
"lint-staged": "^15.2.10",
"terser": "^5.36.0",
"vite": "^5.4.10",
"yorkie": "^2.0.0"
},
"engines": {
"node": ">=18.12.0"
}
}