-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.42 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
{
"name": "gem-server-next",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "nodemon -w src -w config -e ts,js,yml,json -x ts-node src/app",
"start": "node lib/app",
"test": "NODE_ENV=test mocha",
"lint": "eslint src",
"test:coverage": "NODE_ENV=test nyc mocha"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/config": "^0.0.41",
"@types/debug": "^4.1.7",
"@types/glob": "^7.2.0",
"@types/js-yaml": "^4.0.5",
"@types/jsonwebtoken": "^8.5.8",
"@types/koa-bodyparser": "^4.3.7",
"@types/koa-router": "^7.4.4",
"@types/lodash": "^4.14.182",
"@types/mocha": "^9.1.1",
"@types/sinon": "^10.0.12",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"eslint": "^8.19.0",
"mingo": "^6.0.6",
"mocha": "^10.0.0",
"nodemon": "^2.0.19",
"nyc": "^15.1.0",
"pino-pretty": "^8.1.0",
"sinon": "^14.0.0",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
},
"dependencies": {
"@tng/koa-controller": "^1.0.0-alpha.1",
"ajv": "^8.11.0",
"config": "^3.3.7",
"debug": "^4.3.4",
"glob": "^8.0.3",
"http-errors": "^2.0.0",
"jaeger-client": "^3.19.0",
"js-yaml": "^4.1.0",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"koa-router": "^11.0.1",
"lodash": "^4.17.21",
"mongodb": "^4.7.0",
"pino": "^8.1.0"
}
}