-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.11 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
{
"name": "koa-sail-ts",
"version": "0.12.0",
"author": "vdfor",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vdfor/koa-sail-ts.git"
},
"bugs": {
"url": "https://github.com/vdfor/koa-sail-ts/issues"
},
"homepage": "https://github.com/vdfor/koa-sail-ts#readme",
"private": true,
"scripts": {
"start": "nodemon --exec ts-node ./src/index.ts",
"build": "yarn run clean && tsc -p tsconfig.json",
"prod": "cross-env NODE_ENV=production pm2 start --name koa-sail-ts ./dist/index.js",
"prod_docker": "NODE_ENV=production node ./dist/index.js",
"eslint:check": "eslint src --ext .ts",
"eslint:fix": "eslint src --fix --ext .ts",
"clean": "node script/clean.js",
"test": "cross-env NODE_ENV=development mocha --require ts-node/register ./test/**/*.spec.ts"
},
"dependencies": {
"@koa/cors": "^2.2.2",
"jsonwebtoken": "^8.2.1",
"koa": "^2.5.1",
"koa-bodyparser": "^4.2.0",
"koa-compress": "^3.0.0",
"koa-json": "^2.0.2",
"koa-passport": "^4.0.1",
"koa-router": "^7.4.0",
"koa-static": "^4.0.3",
"log4js": "^6.1.0",
"passport-local": "^1.0.0",
"ws": "^7.4.6"
},
"devDependencies": {
"@types/jsonwebtoken": "^7.2.6",
"@types/koa": "^2.0.45",
"@types/koa-bodyparser": "^4.2.0",
"@types/koa-compress": "^2.0.8",
"@types/koa-json": "^2.0.18",
"@types/koa-passport": "^4.0.1",
"@types/koa-router": "^7.0.28",
"@types/koa-static": "^4.0.0",
"@types/koa__cors": "^2.2.3",
"@types/mocha": "^5.2.0",
"@types/node": "^12.12.14",
"@types/passport-local": "^1.0.33",
"@types/supertest": "^2.0.4",
"@types/ws": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^1.5.0",
"@typescript-eslint/parser": "^1.5.0",
"cross-env": "^5.1.4",
"eslint": "^5.15.3",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"fs-extra": "^8.1.0",
"mocha": "^5.1.1",
"nodemon": "^2.0.1",
"supertest": "^3.0.0",
"ts-node": "^8.5.2",
"typescript": "^3.2.2"
}
}