-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "node-server",
"version": "1.1.0",
"description": "node-server-api",
"author": "tolking <qw13131wang@gmail.com>",
"main": "index.js",
"scripts": {
"dev": "node dist/index.js",
"serve": "node dist/index.js",
"build": "npm run lint && npm run build-ts",
"build-ts": "tsc",
"watch": "npm run lint && npm run watch-ts",
"watch-ts": "tsc -w",
"lint": "eslint . --ext .ts"
},
"dependencies": {
"@koa/cors": "2",
"busboy": "^0.3.1",
"jsonwebtoken": "^8.5.1",
"koa": "^2.6.2",
"koa-bodyparser": "^3.2.0",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"md5": "^2.2.1",
"moment": "^2.24.0",
"mysql2": "^1.6.4",
"sequelize": "^5.7.6"
},
"devDependencies": {
"@types/bluebird": "^3.5.26",
"@types/busboy": "^0.2.3",
"@types/jsonwebtoken": "^8.3.2",
"@types/koa": "^2.0.48",
"@types/koa-bodyparser": "^4.2.2",
"@types/koa-router": "^7.0.37",
"@types/koa-static": "^4.0.1",
"@types/koa__cors": "^2.2.3",
"@types/md5": "^2.1.33",
"@types/validator": "^10.11.0",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"eslint": "^6.1.0",
"typescript": "^3.2.2"
}
}