-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
105 lines (105 loc) · 2.89 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
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
100
101
102
103
104
105
{
"name": "koa-smart",
"version": "4.1.1",
"people": {
"name": "YSO CORP",
"email": "contact@ysocorp.com",
"url": "http://ysocorp.com"
},
"description": "A framework base on Koajs2 with Decorator, Params checker and a base of modules (cors, bodyparser, compress, I18n, etc…) to let you develop smart api easily",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=7.10.1"
},
"repository": {
"type": "git",
"url": "https://github.com/ysocorp/koa-smart"
},
"scripts": {
"test": "npm run build-prod && cross-env NODE_ENV=test mocha --opts mocha.opts",
"build-prod": "rimraf dist && cross-env NODE_ENV=production npx tsc",
"lint": "npx eslint -c .eslintrc.js src/**/*.ts --fix",
"generate-doc": "npx esdoc"
},
"dependencies": {
"apidoc": "^0.17.7",
"babel-runtime": "^6.26.0",
"chalk": "^2.4.2",
"esdoc-typescript-plugin": "^1.0.1",
"fs-extra": "^8.0.1",
"i18n-2": "^0.7.3",
"jsonwebtoken": "^8.5.1",
"kcors": "^2.2.2",
"koa": "^2.7.0",
"koa-body": "^4.1.0",
"koa-compress": "^3.0.0",
"koa-helmet": "^4.2.0",
"koa-i18n": "^2.1.0",
"koa-locale": "^1.3.0",
"koa-router": "^7.4.0",
"koa2-ratelimit": "^1.0.1",
"lodash.clonedeep": "^4.5.0",
"lodash.uniq": "^4.5.0",
"moment": "^2.24.0",
"node-gettext": "^2.0.0"
},
"devDependencies": {
"@types/i18n": "^0.8.3",
"@types/kcors": "^2.2.3",
"@types/koa": "^2.0.48",
"@types/koa-bodyparser": "^4.2.1",
"@types/koa-router": "^7.0.39",
"@types/mocha": "^5.2.7",
"@types/node": "^10.14.17",
"@typescript-eslint/eslint-plugin": "^2.3.2",
"@typescript-eslint/eslint-plugin-tslint": "^2.3.2",
"@typescript-eslint/parser": "^2.3.2",
"awesome-typescript-loader": "^5.2.1",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-3": "^6.24.1",
"cross-env": "^5.2.1",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^5.16.0",
"expect": "^24.8.0",
"mocha": "^6.1.4",
"nodemon": "^1.19.2",
"prettier-eslint": "^8.8.2",
"rimraf": "^2.6.3",
"source-map-loader": "^0.2.4",
"supertest": "^4.0.2",
"ts-node": "^8.6.2",
"tslint": "^5.20.0",
"typescript": "^4.5.2"
},
"keywords": [
"koa-smart",
"koa-boilerplate",
"koajs-boilerplate",
"koa2-boilerplate",
"boilerplate",
"koa-decorator",
"koa2-decorator",
"koajs-2-decorator",
"koajs",
"koa-es6",
"koa-es7",
"koajs-2",
"restfull",
"api",
"class",
"decorator",
"koa-essential",
"koa-router",
"framework",
"router"
]
}