-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.18 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
{
"name": "neuvuequeue",
"version": "0.4.0",
"description": "NeuvueQueue",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"unit-test": "mocha --require ts-node/register test/**/*.unit.test.ts",
"integration-test": "mocha --exit --require ts-node/register test/**/*.integration.test.ts",
"test": "mocha --exit --require ts-node/register test/**/*.test.ts",
"tslint": "tslint -p .",
"watch": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aplbrain/neuvuequeue.git"
},
"author": "Miller Wilt <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/aplbrain/neuvuequeue/issues"
},
"homepage": "https://github.com/aplbrain/neuvuequeue#readme",
"devDependencies": {
"@types/async": "^3.2.10",
"@types/chai": "^4.1.2",
"@types/chai-as-promised": "^7.1.0",
"@types/config": "^0.0.34",
"@types/express": "^4.17.13",
"@types/express-unless": "^0.5.2",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash": "^4.14.109",
"@types/mime": "^2.0.0",
"@types/mocha": "^5.1.0",
"@types/node": "^16.11.10",
"@types/on-finished": "^2.3.1",
"@types/on-headers": "^1.0.0",
"@types/pino": "^4.16.1",
"@types/restify": "^8.5.4",
"@types/restify-cors-middleware": "^1.0.2",
"@types/restify-errors": "^4.3.4",
"@types/sinon": "^5.0.1",
"@types/sinon-chai": "^2.7.29",
"@types/swagger-ui-dist": "^3.0.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"mocha": "^5.1.1",
"sinon": "^5.0.10",
"sinon-chai": "^3.0.0",
"ts-node": "^6.1.0",
"tslint": "^5.9.1",
"typescript": "^4.5.2"
},
"dependencies": {
"@types/http-errors": "^1.8.1",
"axios": "^0.24.0",
"async": "^3.2.2",
"config": "^1.30.0",
"express-unless": "^1.0.0",
"http-errors": "^1.8.1",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^2.0.5",
"lodash": "^4.17.21",
"mime": "^2.4.0",
"mongoose": "^6.1.2",
"on-finished": "^2.3.0",
"on-headers": "^1.0.1",
"pino": "^4.17.6",
"restify": "^8.6.0",
"restify-cors-middleware2": "^2.1.2",
"restify-errors": "^8.0.2",
"swagger-ui-dist": "^4.5.2"
}
}