-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 2.41 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
{
"name": "jskos-proxy",
"version": "0.4.7",
"description": "HTTP proxy to serve JSKOS objects",
"type": "module",
"exports": "./src/server/server.js",
"scripts": {
"dev": "nodemon --watch .env --watch 'src/server/*.js' --watch config/ src/server/server.js",
"build": "vite build",
"start": "NODE_ENV=production node src/server/server.js",
"test": "echo 'Tests not yet implemented' && npm run lint",
"lint": "eslint",
"fix": "eslint --fix",
"updateTypes": "curl -s https://api.dante.gbv.de/voc/nkostype/top | jq -c '[.[] | { uri, prefLabel }]' > src/client/nkostype-concepts.json",
"updateFormats": "curl -s https://format.gbv.de/formats.ndjson | jq -c '{key:(\"http://format.gbv.de/\"+.id),value:.title}' | jq -Ss 'from_entries' > src/client/formats.json",
"yesno": "node -e \"const yesno = require('yesno'); yesno({ question: 'Are you sure you want to continue?' }).then(ok => process.exit(ok ? 0 : 1));\"",
"release": "test $(git rev-parse --abbrev-ref HEAD) = dev && git pull && npm test && npm version $SEMVER && npm run --silent yesno && (git push && git checkout main && git merge dev && git push --follow-tags && git checkout dev) || (git tag -d $(git describe --tags) && git reset --hard HEAD~1)",
"release:patch": "SEMVER=patch npm run release",
"release:minor": "SEMVER=minor npm run release",
"release:major": "SEMVER=major npm run release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gbv/jskos-proxy.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/gbv/jskos-proxy/issues"
},
"homepage": "https://github.com/gbv/jskos-proxy#readme",
"engines": {
"node": ">=20.10"
},
"dependencies": {
"@intlify/unplugin-vue-i18n": "^5.2.0",
"@vue-leaflet/vue-leaflet": "^0.10.1",
"axios": "^1.7.7",
"cocoda-sdk": "^3.4.12",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"jskos-tools": "^1.0.42",
"jskos-vue": "^0.3.16",
"jsonld": "^8.3.2",
"leaflet": "^1.9.4",
"petite-vue-i18n": "^10.0.4",
"portfinder": "^1.0.32",
"rdflib": "^2.2.35",
"vite-express": "^0.19.0",
"vue": "^3.5.11",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.1.4",
"eslint": "~9.12",
"eslint-config-gbv": "~2.2",
"eslint-plugin-vue": "^9.28.0",
"nodemon": "^3.1.7",
"vite": "^5.4.8",
"vite-plugin-vue-devtools": "^7.4.6",
"yesno": "^0.4.0"
}
}