-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.5 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.5 KB
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": "@docmaps/http-server",
"version": "0.1.0",
"description": "Node.js runtime for serving docmaps using other composed docmaps-related npm modules",
"type": "module",
"main": "dist/httpserver/main.js",
"scripts": {
"test": "ava",
"clean": "rm -rf dist/",
"test:integration": "ava test/integration/",
"test:cleanup": "docker compose -f test/integration/assets/docker-compose.yml down",
"test:unit": "ava test/unit/",
"compose:repave": "rm -rf tmp/oxigraph_data/*",
"compose:up": "docker compose -f $INIT_CWD/docker-compose.local.yml up --build",
"lint": "npx eslint .",
"lint:fix": "npx eslint --fix .",
"start": "tsx dist/httpserver/main.js",
"build:deps": "pnpm run --filter=@docmaps/http-server^... build",
"build": "tsc --declaration"
},
"keywords": [],
"author": "eve github.com/ships",
"license": "ISC",
"files": [
"dist/",
"README.md",
"package.json",
"tsconfig.json"
],
"dependencies": {
"@commander-js/extra-typings": "^11.0.0",
"@docmaps/http-client": "workspace:^0.1.0",
"@rdfjs/data-model": "^2.0.1",
"@rdfjs/namespace": "^2.0.0",
"@tpluscode/sparql-builder": "^1.1.0",
"@ts-rest/core": "^3.30.2",
"@ts-rest/express": "^3.30.2",
"@zazuko/rdf-vocabularies": "^2023.1.19",
"commander": "^11.0.0",
"cors": "^2.8.5",
"@docmaps/sdk": "workspace:^0.0.0",
"express": "^4.18.2",
"fetch-sparql-endpoint": "^4.0.0",
"fp-ts": "^2.14.0",
"isomorphic-fetch": "^3.0.0",
"n3": "^1.17.1",
"oxigraph": "^0.3.19",
"pino": "^8.16.1",
"pino-http": "^8.5.1",
"streaming-iterables": "^8.0.0",
"tsx": "^4.0.0"
},
"devDependencies": {
"@docmaps/build-configs": "workspace:^",
"@rdfjs/types": "^1.1.0",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.17",
"@types/isomorphic-fetch": "^0.0.39",
"@types/n3": "^1.16.0",
"@types/node": "^20.0.0",
"@types/rdfjs__data-model": "^2.0.4",
"@types/rdfjs__namespace": "^2.0.5",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"ava": "^5.2.0",
"eslint": "^8.39.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"ts-mockito": "^2.6.1",
"typescript": "^5.2.2",
"zod": "^3.22.2"
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=tsx/esm"
],
"files": [
"**/*.test.ts"
]
},
"engines": {
"node": ">=18.14.0"
}
}