-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.47 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.47 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "sisdb.client.server",
"version": "1.0.1-alpha.0",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/seerline/sisdb.client.server.git"
},
"scripts": {
"dev": "NODE_ENV=development nodemon",
"build": "tsc",
"start": "NODE_ENV=producation node ./dist/src/server.js",
"lint": "tslint -c tslint.json -p tsconfig.json",
"clean": "ets clean",
"test": "NODE_ENV=test mocha --exit --require espower-typescript/guess ./test/**/*.ts",
"test:cov": "nyc npm test && open ./coverage/src/index.html",
"test:watch": "npm run test -- --watch-extensions ts --watch -R min",
"debug": "ndb nodemon",
"release": "standard-version"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/inflection": "^1.5.28",
"bcryptjs": "^2.4.3",
"boom": "^7.3.0",
"debug": "^4.1.0",
"egg-ts-helper": "^1.17.1",
"inflection": "^1.12.0",
"ioredis": "^4.2.0",
"jsonwebtoken": "^8.4.0",
"kcors": "^2.2.2",
"koa": "^2.6.2",
"koa-bodyparser": "^4.2.1",
"koa-logger": "^3.2.0",
"koa-router": "^7.4.0"
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@types/bcryptjs": "^2.4.2",
"@types/boom": "^7.2.1",
"@types/debug": "^0.0.31",
"@types/ioredis": "^4.0.4",
"@types/jsonwebtoken": "^8.3.0",
"@types/kcors": "^2.2.3",
"@types/koa-bodyparser": "^4.2.1",
"@types/koa-logger": "^3.1.1",
"@types/koa-router": "^7.0.35",
"@types/mocha": "^5.2.5",
"@types/supertest": "^2.0.6",
"commitizen": "^3.0.5",
"cz-conventional-changelog": "^2.1.0",
"espower-typescript": "^9.0.1",
"husky": "^1.2.0",
"mocha": "^5.2.0",
"ndb": "^1.0.38",
"nodemon": "^1.18.7",
"nyc": "^13.1.0",
"power-assert": "^1.6.1",
"standard-version": "^4.4.0",
"supertest": "^3.3.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.2.1"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"espower-typescript/guess"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}