-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 2.27 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
{
"name": "olfaction",
"private": true,
"author": "Felix Becker <felix.b@outlook.com>",
"license": "MIT",
"engines": {
"node": ">=13.6.0"
},
"scripts": {
"build": "tsc -p .",
"watch": "tsc -p . -w",
"start": "node out/server.js",
"prettier": "prettier --write '**/*.{ts,json,yml,graphql,md}'",
"gen-idl": "get-graphql-schema http://localhost:4040/graphql | prettier --parser graphql > schema/schema.graphql",
"gen-uml": "plantuml -tsvg schema/*.plantuml",
"watch-uml": "chokidar --initial 'schema/**/*.plantuml' -c 'npm -s run gen-uml'"
},
"devDependencies": {
"@sourcegraph/eslint-config": "^0.5.3",
"@types/body-parser": "^1.17.1",
"@types/chardet": "^0.8.0",
"@types/compression": "^1.0.1",
"@types/express": "^4.17.1",
"@types/express-graphql": "^0.9.0",
"@types/graphql": "^14.2.3",
"@types/graphql-relay": "^0.4.11",
"@types/jaeger-client": "^3.15.3",
"@types/lodash": "^4.14.139",
"@types/mkdirp": "^1.0.0",
"@types/morgan": "^1.7.37",
"@types/mz": "0.0.32",
"@types/node": "^12.7.8",
"@types/object-hash": "^1.3.0",
"@types/pg": "^7.11.1",
"@types/rmfr": "^2.0.0",
"@types/sloc": "^0.2.0",
"@types/uuid": "^3.4.6",
"chokidar-cli": "^2.1.0",
"eslint": "^6.8.0",
"get-graphql-schema": "^2.1.2",
"prettier": "^1.19.1",
"typescript": "^3.7.4"
},
"dependencies": {
"@js-joda/core": "^1.12.0",
"async-middleware": "^1.2.1",
"body-parser": "^1.19.0",
"cgi": "^0.3.1",
"chardet": "^0.8.0",
"compression": "^1.7.4",
"dataloader": "^2.0.0",
"execa": "^4.0.0",
"express": "^4.17.1",
"express-basic-auth": "^1.2.0",
"express-graphql": "^0.9.0",
"express-opentracing": "^0.1.1",
"graphql": "^14.6.0",
"graphql-relay": "^0.6.0",
"http-status-codes": "^1.3.2",
"ix": "^2.5.3",
"jaeger-client": "^3.17.1",
"lodash": "^4.17.15",
"mkdirp": "^1.0.3",
"morgan": "^1.9.1",
"mz": "^2.7.0",
"object-hash": "^2.0.1",
"opentracing": "^0.14.4",
"original-url": "^1.2.3",
"p-map": "^3.0.0",
"pg": "^7.18.1",
"rmfr": "^2.0.0",
"sloc": "^0.2.1",
"source-map-support": "^0.5.16",
"sql-template-strings": "^2.2.2",
"tagged-template-noop": "^2.1.0",
"uuid": "^3.4.0"
}
}