-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.09 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
{
"name": "koa-framework",
"version": "0.2.0",
"description": "Koa framework",
"main": "dist",
"scripts": {
"build": "tsc"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module"
},
"env": {
"node": true
},
"rules": {
"no-console": 0,
"no-unused-vars": 1
}
},
"repository": "bammoo/koa-framework",
"author": "John Xiao <xiao-jianfeng@qq.com>",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"fs-extra": "4.0.0",
"jsonwebtoken": "^8.5.1",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-jwt": "^3.5.1",
"koa-morgan": "^1.0.1",
"koa-pino-logger": "^2.1.3",
"koa-router": "^7.4.0",
"pino": "^5.11.3",
"redis": "^2.8.0",
"reflect-metadata": "^0.1.13",
"shortid": "^2.2.11"
},
"devDependencies": {
"@types/async": "^2.0.45",
"@types/koa": "^2.0.48",
"@types/koa-router": "^7.0.40",
"@types/node": "^9.4.6",
"eslint": "^6.0.1",
"pino-pretty": "^2.5.0",
"typescript": "^3.3.3"
}
}