generated from digicatapult/openapi-service-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.32 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
{
"name": "@digicatapult/morello-api",
"version": "0.6.9",
"description": "An interface for executing binaries on it's self and morello host.",
"main": "src/index.ts",
"scripts": {
"lint": "eslint .",
"build:tsoa": "tsoa spec-and-routes",
"build": "tsoa spec-and-routes && tsc",
"examples:update": "cd bin && wget https://github.com/digicatapult/morello-examples/releases/download/latest/morello-examples.tar.gz && tar -xvf morello-examples.tar.gz && rm morello-examples.tar.gz",
"examples:clean": "rm -rf bin/* bin/.version",
"start": "node build/index.js",
"depcheck": "depcheck",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q build/index.js | pino-colada\"",
"test:unit": "NODE_ENV=test ./node_modules/.bin/mocha -r ts-node/register ./src/**/*.test.ts",
"test:integration": "NODE_ENV=test ./node_modules/.bin/mocha --timeout 30000 -r ts-node/register ./integration/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digicatapult/morello-api.git"
},
"engines": {
"node": "16.x.x",
"npm": "8.x.x"
},
"keywords": [
"OpenAPI"
],
"author": "Digital Catapult",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/digicatapult/morello-api/issues"
},
"homepage": "https://github.com/digicatapult/morello-api#readme",
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/config": "^0.0.41",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.34",
"@types/sinon": "^10.0.13",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"chai": "^4.3.6",
"concurrently": "^7.2.0",
"depcheck": "^1.4.3",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.0.0",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"sinon": "^14.0.0",
"supertest": "^6.2.4",
"ts-node": "^10.9.1",
"typescript": "^4.6.4"
},
"dependencies": {
"body-parser": "^1.20.0",
"config": "^3.3.7",
"cors": "^2.8.5",
"express": "^4.18.1",
"pino": "^7.11.0",
"pino-colada": "^2.2.2",
"swagger-ui-express": "^4.4.0",
"tsoa": "^4.0.0"
}
}