-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
95 lines (95 loc) · 3.05 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
89
90
91
92
93
94
95
{
"name": "@hydrofoil/hydra",
"private": true,
"scripts": {
"prepare": "husky install",
"postinstall": "npx yarn-deduplicate",
"lint": "eslint . --ext .ts --quiet --ignore-path .gitignore --ignore-path .eslintignore",
"test": "c8 --all --reporter=lcov mocha --recursive packages/**/*.test.ts",
"release": "changeset publish",
"docs": "docsify serve ./docs",
"talos:helptext:put": "talos help put > docs/talos/put.txt",
"talos:helptext:put-vocab": "talos help put-vocabs > docs/talos/put-vocabs.txt",
"typedoc": "typedoc --watch",
"start": "node -r ts-node/register --inspect packages/knossos/index.ts serve http://db.labyrinth.lndo.site/repositories/labyrinth?infer=true --name conduit --codePath ./apps/conduit --user minos --password password"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@babel/register": "^7.18.9",
"@changesets/cli": "^2.25.0",
"@hydrofoil/talos": "^0.5.1",
"@tpluscode/eslint-config": "^0.3.3",
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/chai-quantifiers": "^1.0.0",
"@types/chai-snapshot-matcher": "^1",
"@types/clownface": "^1.5.1",
"@types/cors": "^2.8.7",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.8",
"@types/fcostarodrigo__walk": "^5.0.0",
"@types/http-errors": "^1.8.0",
"@types/mocha": "^9.1.1",
"@types/once": "^1.4.0",
"@types/rdf-ext": "^1.3.8",
"@types/rdf-js": "^4.0.2",
"@types/rdf-loader-code": "^0.3.3",
"@types/rdf-loaders-registry": "^0.3.0",
"@types/rdfjs__express-handler": "^1.1.6",
"@types/rdfjs__namespace": "^1.1.3",
"@types/rdfjs__term-map": "^1",
"@types/rdfjs__term-set": "^1.0.1",
"@types/set-link": "^1.0.1",
"@types/sinon": "^10.0.13",
"@types/sinon-chai": "^3.2.8",
"@types/sparql-http-client": "^2.2.8",
"@types/sparqljs": "^3.0.1",
"@types/supertest": "^2.0.12",
"@types/wait-on": "^5.2.0",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"c8": "^7.12.0",
"chai-as-promised": "^7.1.1",
"chai-quantifiers": "^1.0.17",
"chai-snapshot-matcher": "^2.0.2",
"docsify-cli": "^4.4.4",
"eslint": "8.22.0",
"eslint-config-standard": "^17.0.0",
"eslint-import-resolver-typescript": "^3.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-promise": "^6.0.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.2",
"sinon-chai": "^3.7.0",
"standard": "^17.0.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^3.14.1",
"typedoc": "^0.23.16",
"typescript": "^4.8.4",
"yarn-deduplicate": "^6.0.0"
},
"workspaces": [
"packages/*",
"apps/*"
],
"resolutions": {
"@types/rdf-js": "^4.0.0"
},
"mocha": {
"watch-files": [
"./**/*.ts"
],
"require": [
"mocha-setup.js"
]
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix --quiet"
]
}
}