-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
99 lines (99 loc) · 2.93 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
96
97
98
99
{
"name": "@promaster-sdk/api-server",
"version": "3.7.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"description": "Promaster API server reference implementation",
"repository": "https://github.com/promaster-sdk/api-server",
"author": "Divid Promaster AB <info@divid.se>",
"engines": {
"node": ">=14.15.4"
},
"engineStrict": true,
"license": "MIT",
"publishConfig": {
"access": "public"
},
"resolutions": {
"graphql": "15.5.0"
},
"devDependencies": {
"@types/amqplib": "^0.10.1",
"@types/convict": "^4.2.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/koa": "^2.0.46",
"@types/koa-compose": "^3.2.2",
"@types/koa-compress": "^2.0.9",
"@types/koa-graphql": "^0.8.3",
"@types/koa-mount": "^3.0.1",
"@types/koa-multer": "^1.0.0",
"@types/koa-send": "^4.1.2",
"@types/koa__cors": "^2.2.3",
"@types/koa__router": "^8.0.3",
"@types/mkdirp": "^0.5.2",
"@types/multer": "^1.3.7",
"@types/uuid": "^8.3.0",
"dotenv": "^7.0.0",
"lint-staged": "^8.1.5",
"prettier": "^2.1.1",
"tsc-watch": "^4.4.0",
"tslint": "^5.16.0",
"tslint-immutable": "^5.5.2",
"typescript": "^4.9.5"
},
"dependencies": {
"@koa/cors": "^2.2.2",
"@koa/router": "^9.4.0",
"@opentelemetry/api": "^1.4.0",
"@opentelemetry/auto-instrumentations-node": "^0.36.2",
"@opentelemetry/core": "^1.9.1",
"@opentelemetry/exporter-otlp-grpc": "^0.26.0",
"@opentelemetry/resources": "^1.9.1",
"@opentelemetry/sdk-node": "^0.35.1",
"@opentelemetry/semantic-conventions": "^1.9.1",
"convict": "^4.2.0",
"dataloader": "^1.4.0",
"graphql": "^15.5.0",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^1.9.0",
"koa": "^2.4.1",
"koa-compose": "^4.1.0",
"koa-compress": "^2.0.0",
"koa-graphql": "^0.8.0",
"koa-mount": "^3.0.0",
"koa-multer": "^1.0.2",
"koa-send": "^5.0.1",
"mimetype": "^0.0.8",
"mkdirp": "^0.5.1",
"multer": "^1.3.1",
"prom-client": "11.x",
"prometheus-api-metrics": "^3.1.0",
"source-map-support": "^0.5.3",
"uuid": "^8.3.0",
"vitest": "^0.34.5"
},
"scripts": {
"test": "vitest",
"start": "tsc && tsc-watch --preserveWatchOutput --onSuccess \"node -r dotenv/config ./lib/server/server.js\" --onFailure \"echo Beep! Compilation Failed\"",
"build": "tsc",
"clean": "rm -rf lib",
"rebuild": "yarn clean && yarn build",
"lint": "tslint './src/**/*.ts{,x}'",
"precommit": "lint-staged",
"verify": "yarn clean && yarn build",
"preversion": "yarn verify",
"postversion": "git push --tags && yarn publish --new-version $npm_package_version && git push && echo \"Successfully released version $npm_package_version!\""
},
"lint-staged": {
"*.{ts,tsx}": "tslint",
"*.{ts,tsx,js,json,css,md}": [
"prettier --write",
"git add"
]
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5",
"arrowParens": "always"
}
}