-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
88 lines (88 loc) · 2.79 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
81
82
83
84
85
86
87
88
{
"name": "bartoc.org",
"version": "1.3.2",
"description": "BARTOC.org web interface",
"main": "server.js",
"type": "module",
"scripts": {
"start": "NODE_ENV=production node server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint; ejslint views/*.ejs",
"fix": "eslint --fix",
"lint-staged": "lint-staged",
"data": "npm run data:nkostype; make -C data",
"validate": "jskos-validate",
"jskos-convert": "cd $INIT_CWD; jskos-convert",
"dump": "node ./bin/dump.js update && ./bin/reports.sh && ./bin/stats.sh",
"vue:serve": "vite",
"build": "vite build",
"express:serve": "NODE_ENV=development nodemon server.js",
"dev": "concurrently -k \"npm:express:serve\" \"npm:vue:serve\"",
"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 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"
},
"lint-staged": {
"*.js": "eslint --fix",
"*.vue": "eslint --fix"
},
"pre-commit": "lint-staged",
"author": "Jakob Voß",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gbv/bartoc.org.git"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/vue-fontawesome": "^3.0.8",
"@vitejs/plugin-vue": "^5.1.5",
"@vueform/multiselect": "^2.6.10",
"axios": "^1.7.7",
"cocoda-sdk": "^3.4.12",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.21.1",
"express-http-proxy": "^2.1.1",
"front-matter": "^4.0.2",
"gbv-login-client": "^2.0.1",
"jskos-cli": "^0.7.0",
"jskos-tools": "^1.0.42",
"jsondiffpatch": "^0.6.0",
"jsonld": "^8.3.2",
"lodash": "^4.17.21",
"marked": "^15.0.0",
"n-readlines": "^1.0.1",
"portfinder": "^1.0.32",
"rdflib": "^2.2.35",
"timeago.js": "^4.0.2",
"vite": "^5.4.11",
"vue": "^3.5.12"
},
"optionalDependencies": {
"fsevents": "2.3.3"
},
"devDependencies": {
"concurrently": "^9.1.0",
"ejs-lint": "^2.0.1",
"eslint": "~9.14",
"eslint-config-gbv": "~2.4",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.7",
"pre-commit": "^1.2.2",
"yesno": "^0.4.0"
},
"nodemonConfig": {
"ignore": [
"test/*",
"vue/*",
"dist/*"
]
}
}