-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.72 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": "ts-http-template",
"version": "1.0.0",
"description": "HTTP REST API server template with Typescript, tests and docs generator.",
"main": "./dist/src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/maxtomczyk/ts-http-template.git"
},
"scripts": {
"test": "TEST_RUN=1 mocha --exit -r ts-node/register test/tests/**/*.ts",
"dev": "nodemon src/index.ts",
"debug": "nodemon --inspect=9229 src/index.ts",
"build": "tsc",
"start": "node ./dist/src/index.js",
"docs": "node --require ts-node/register ./docs/index.ts && npx redoc-cli bundle ./docs/_api.json --output ./docs/static.html"
},
"author": "Maksymilian Tomczyk <[email protected]>",
"license": "MIT",
"dependencies": {
"dotenv": "^10.0.0",
"http-terminator": "^3.0.0",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-helmet": "^6.1.0",
"koa-joi-router": "^8.0.0",
"pino": "^6.13.1"
},
"devDependencies": {
"@hapi/joi": "^17.1.1",
"@types/chai": "^4.2.21",
"@types/koa": "^2.13.4",
"@types/koa-bodyparser": "^4.3.3",
"@types/koa-joi-router": "^8.0.1",
"@types/koa-joi-router-docs": "^1.0.1",
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.2",
"@types/pino": "^6.3.11",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"chai": "^4.3.4",
"class-transformer": "^0.2.3",
"class-validator": "^0.9.1",
"eslint": "^7.32.0",
"koa-joi-router-docs": "^1.2.1",
"mocha": "^9.1.0",
"nodemon": "^2.0.12",
"pino-pretty": "^6.0.0",
"redoc-cli": "^0.12.3",
"supertest": "^6.1.6",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
}
}