-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.1 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
{
"name": "skohub-reconcile-publish",
"version": "0.0.1",
"description": "Publish vocabularies to a SkoHub Reconcile service.",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon --delay 500ms src/index.js localhost 3030",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"keywords": [
"skohub",
"skos",
"reconciliation"
],
"author": "Steffen Rörtgen <[email protected]>",
"license": "MIT",
"dependencies": {
"@elastic/elasticsearch": "^8.6.0",
"@frogcat/ttl2jsonld": "^0.0.9",
"dotenv": "^16.0.3",
"ejs": "^3.1.9",
"elastic-builder": "^2.18.0",
"express": "^4.18.2",
"express-session": "^1.18.0",
"jsonld": "^8.1.1",
"multer": "^1.4.5-lts.1",
"passport": "^0.7.0",
"passport-mediawiki-oauth": "^0.1.0",
"passport-oauth2": "^1.8.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@vitest/coverage-c8": "^0.30.1",
"nodemon": "^2.0.22",
"vitest": "^0.30.1"
},
"nodemonConfig": {
"ignore": [
"**/public/log/**"
]
}
}