-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.36 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
{
"name": "apidoc-plugin-class-validator-demo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"doc": "./node_modules/.bin/apidoc -i src/ -o docs",
"start": "./node_modules/.bin/nodemon --watch 'src/' --exec './node_modules/.bin/ts-node' ./src/app.ts",
"ftest": "mocha -bail --exit --compilers ts:ts-node/register -R spec -t 50000 -r should --recursive src/functionalTest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zhengyhn/apidoc-plugin-class-validator-demo.git"
},
"author": "hank <yuanhang.zheng@qq.com> (http://zhengyhn.github.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/zhengyhn/apidoc-plugin-class-validator-demo/issues"
},
"homepage": "https://github.com/zhengyhn/apidoc-plugin-class-validator-demo#readme",
"dependencies": {
"class-transformer": "^0.2.0",
"class-validator": "^0.9.1",
"koa": "^2.6.2",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"reflect-metadata": "^0.1.12"
},
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
"apidoc": "^0.17.7",
"apidoc-plugin-class-validator": "0.0.1",
"mocha": "^5.2.0",
"nodemon": "^1.18.9",
"should": "^13.2.3",
"supertest": "^3.3.0",
"ts-node": "^7.0.1",
"tslint-config-klg": "^1.0.5"
}
}