This repository has been archived by the owner on May 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
81 lines (81 loc) · 2.62 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
{
"private": true,
"dependencies": {
"@koa/cors": "^3.0.0",
"@koa/router": "^8.0.8",
"@rdfjs/data-model": "^1.1.2",
"@rdfjs/namespace": "^1.1.0",
"@rdfjs/parser-jsonld": "^1.2.0",
"@rdfjs/serializer-jsonld-ext": "^2.0.0",
"clownface": "^0.12.1",
"content-type": "^1.0.4",
"format-link-header": "^3.0.0",
"http-errors": "^1.7.3",
"http-status-codes": "^1.4.0",
"it-all": "^1.0.1",
"koa": "^2.11.0",
"koa-compose": "^4.1.0",
"koa-logger": "^3.2.1",
"p-event": "^4.1.0",
"pg-promise": "^10.5.0",
"rdf-dataset-ext": "^1.0.0",
"rdf-dataset-indexed": "^0.4.0",
"rdf-literal": "^1.1.0",
"rdf-string": "^1.3.1",
"to-readable-stream": "^2.1.0",
"unique-string": "^2.0.0"
},
"devDependencies": {
"@types/clownface": "^0.12.12",
"@types/content-type": "^1.1.3",
"@types/format-link-header": "^2.1.0",
"@types/http-errors": "^1.6.3",
"@types/it-all": "^1.0.0",
"@types/jest": "^25.2.1",
"@types/jsonld": "^1.5.1",
"@types/koa": "^2.11.3",
"@types/koa-compose": "^3.2.5",
"@types/koa-logger": "^3.1.1",
"@types/koa__cors": "^3.0.1",
"@types/koa__router": "^8.0.2",
"@types/node": "^12.12.34",
"@types/parse-link-header": "^1.0.0",
"@types/rdf-dataset-ext": "^1.0.0",
"@types/rdf-dataset-indexed": "^0.4.3",
"@types/rdf-js": "^2.0.11",
"@types/rdfjs__namespace": "^1.1.1",
"@types/rdfjs__parser-jsonld": "^1.2.2",
"@types/rdfjs__serializer-jsonld-ext": "^2.0.2",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.2.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.8.2",
"jest": "^25.2.7",
"jest-mock-extended": "^1.0.8",
"jest-rdf": "^1.5.0",
"jest-runner-groups": "^1.1.1",
"mock-http": "^1.0.2",
"nodemon": "^2.0.2",
"parse-link-header": "^1.0.1",
"supertest": "^4.0.2",
"ts-jest": "^25.3.0",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"scripts": {
"build": "tsc",
"initdb": "node ./build/tools/initdb.js",
"initdb:dev": "ts-node ./src/tools/initdb",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "eslint . --fix --ext .js,.ts",
"start": "node ./build/index.js",
"start:dev": "nodemon --exec 'node --require ts-node/register ./src/index.ts' --ext .js,.json,.ts",
"test": "jest --silent",
"test:integration": "jest --silent --group=integration",
"test:unit": "jest --silent --group=-integration"
}
}