-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
79 lines (79 loc) · 2.28 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
{
"name": "register",
"type": "module",
"exports": "./build/src/main.js",
"version": "0.0.0-semantically-released",
"description": "",
"main": "build/src/main.js",
"engines": {
"node": ">=16"
},
"scripts": {
"start": "node --experimental-specifier-resolution=node build/src/main.js",
"dev": "tsc-watch --onSuccess 'npm run start'",
"test": "NODE_OPTIONS='--experimental-vm-modules --no-experimental-fetch' jest ${1}",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"posttest": "jest-coverage-thresholds-bumper --silent",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"files": [
"build/src",
"shacl/"
],
"dependencies": {
"@comunica/data-factory": "^3.0.1",
"@comunica/query-sparql": "^4.0.2",
"@fastify/accepts-serializer": "^6.0.1",
"@fastify/cors": "^10.0.1",
"@fastify/swagger": "^9.0.0",
"@fastify/swagger-ui": "^5.0.1",
"@opentelemetry/api": "^1.4.1",
"@opentelemetry/exporter-metrics-otlp-proto": "^0.54.0",
"@opentelemetry/resources": "^1.14.0",
"@opentelemetry/sdk-metrics": "^1.14.0",
"@opentelemetry/sdk-node": "^0.54.0",
"@opentelemetry/semantic-conventions": "^1.14.0",
"@types/rdf-validate-shacl": "^0.4.0",
"asynciterator": "^3.2.0",
"fastify": "^5.0.0",
"graphdb": "^3.0.0",
"n3": "^1.10.0",
"node-fetch": "^3.3.1",
"node-schedule": "^2.0.0",
"pino": "^9.0.0",
"psl": "^1.8.0",
"rdf-dataset-ext": "^1.0.0",
"rdf-dereference": "^3.0.0",
"rdf-ext": "^2.0.1",
"rdf-serialize": "^4.0.1",
"rdf-validate-shacl": "^0.5.1"
},
"devDependencies": {
"@rdfjs/types": "^1.0.1",
"@types/jest": "^29.5.1",
"@types/node": "^22.0.0",
"@types/node-schedule": "^2.1.0",
"@types/psl": "^1.1.0",
"@types/rdf-dataset-ext": "^1.0.1",
"@types/rdf-ext": "^2.0.1",
"chokidar": "^4.0.0",
"gts": "^6.0.0",
"husky": "^9.0.11",
"jest": "^29.5.0",
"jest-coverage-thresholds-bumper": "^1.1.0",
"jsonld-streaming-parser": "^4.0.1",
"microdata-rdf-streaming-parser": "^2.0.0",
"nock": "^13.2.6",
"rdfa-streaming-parser": "^2.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.4.0",
"tsc-watch": "^6.0.0",
"typescript": "^5.0.4"
}
}