-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.14 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
{
"name": "skohub-reconcile",
"engines": {
"node": ">=18.0.0"
},
"version": "0.0.1",
"description": "Reconciliation API server for SKOS Vocabularies",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon --delay 500ms ./src/server.js localhost 3000",
"reset-index": "node src/elastic/resetIndex.js",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/skohub-io/skohub-reconcile.git"
},
"author": "Andreas Wagner <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/skohub-io/skohub-reconcile/issues"
},
"homepage": "https://github.com/skohub-io/skohub-reconcile#readme",
"devDependencies": {
"@vitest/coverage-c8": "^0.30.1",
"eslint": "^8.36.0",
"nodemon": "^2.0.21",
"semver": "^7.5.4",
"vitest": "^0.30.1"
},
"dependencies": {
"@elastic/elasticsearch": "^8.0.0",
"ajv": "^8.12.0",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"elastic-builder": "^2.16.0",
"express": "^4.16.4",
"morgan": "^1.9.1"
}
}