-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.7 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": "api-koa-typescript-starter",
"version": "0.0.0-dev",
"private": true,
"description": "api-koa-typescript-starter",
"scripts": {
"dev": "ts-node-dev --no-deps -r tsconfig-paths/register --transpileOnly src/main.ts --program=tsnode",
"dev:d": "node-dev --no-deps -r tsconfig-paths/register -r ts-node/register/transpile-only --inspect src/main.ts --program=tsnode",
"test": "npm run eslint && npm run tscheck && npm run test:cov",
"test:r": "mocha -r tsconfig-paths/register -r ts-node/register/transpile-only -t 15s src/**/*.spec.ts --node_env=test",
"test:w": "mocha -r tsconfig-paths/register -r ts-node/register/transpile-only --reporter min -t 15s --watch-extensions ts --watch src/**/*.spec.ts --node_env=test",
"test:cov": "nyc mocha -r tsconfig-paths/register -r ts-node/register/transpile-only -t 15s src/**/*.spec.ts --node_env=test",
"test:d": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register/transpile-only node_modules/mocha/bin/_mocha --no-timeouts --watch-extensions ts --watch src/**/*.spec.ts --node_env=test",
"tscheck": "echo tscheck... && tsc --noEmit",
"tscheck:w": "npm run tscheck -- --watch",
"eslint": "eslint src --ext ts",
"eslint:fix": "eslint src --ext \"ts\" --fix",
"eslint:w": "watch \"npm run -s eslint\" src"
},
"dependencies": {
"convict": "4.4.1",
"fluent-ts-validator": "3.0.2",
"koa": "2.6.2",
"koa-bodyparser": "4.2.1",
"koa-compose": "4.1.0",
"koa-json-error": "3.1.2",
"koa-tree-router": "0.4.4",
"mssql": "4.3.0",
"njct": "7.1.3"
},
"devDependencies": {
"@types/convict": "4.2.1",
"@types/expect": "1.X",
"@types/koa": "2.0.48",
"@types/koa-bodyparser": "4.2.1",
"@types/koa-compose": "3.2.2",
"@types/koa-json-error": "3.1.2",
"@types/mocha": "5.2.5",
"@types/mssql": "4.0.11",
"@types/node": "10.12.18",
"eslint": "5.12.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-tslint": "3.1.0",
"eslint-plugin-typescript": "0.14.0",
"eslint-plugin-unicorn": "6.0.1",
"expect": "1.X",
"mocha": "5.2.0",
"node-dev": "3.1.3",
"nyc": "13.1.0",
"ts-node": "7.0.1",
"ts-node-dev": "1.0.0-pre.32",
"tsconfig-paths": "3.7.0",
"tslint": "5.12.0",
"typescript": "3.1.6",
"typescript-eslint-parser": "21.0.2",
"universal-mock": "1.1.0",
"watch": "1.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unlight/api-koa-typescript-starter.git"
},
"bugs": {
"url": "https://github.com/unlight/api-koa-typescript-starter/issues"
},
"license": "ISC",
"keywords": [
"koa-starter"
],
"homepage": "https://github.com/unlight/api-koa-typescript-starter#readme"
}