-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.08 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
{
"name": "koavel",
"version": "2.0.0",
"description": "a simple koa framework for node, the framework is based on typescript",
"main": "/dist/app.js",
"directories": {
"doc": "docs"
},
"scripts": {
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/app.ts",
"start": "npm run serve",
"serve": "node dist/server.js",
"build": "npm run tslint && npm run build-ts",
"build-ts": "tsc",
"watch": "npm run tslint && npm run watch-ts",
"watch-ts": "tsc -w",
"tslint": "tslint -c tslint.json -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "https://github.com/viken2/koavel.git"
},
"author": "viken2011@gmail.com",
"engines": {
"node": ">= 10.16.0"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/viken2/koavel/issues"
},
"homepage": "https://github.com/viken2/koavel#readme",
"dependencies": {
"@koa/cors": "^3.0.0",
"async-validator": "^3.2.4",
"bcryptjs": "^2.4.3",
"inversify": "^5.0.1",
"ioredis": "^4.16.3",
"jsonwebtoken": "^8.5.1",
"koa": "^2.11.0",
"koa-bodyparser": "^4.3.0",
"koa-helmet": "^5.2.0",
"koa-logger": "^3.2.1",
"koa-router": "^8.0.8",
"mysql2": "^2.1.0",
"node-xlsx": "^0.15.0",
"openid-client": "^3.14.2",
"path-to-regexp": "^6.1.0",
"performant-array-to-tree": "^1.7.1",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.21.7",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/bluebird": "^3.5.30",
"@types/ioredis": "^4.14.9",
"@types/jsonwebtoken": "^8.3.9",
"@types/koa": "^2.11.3",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-compose": "^3.2.5",
"@types/koa-helmet": "^3.1.2",
"@types/koa-logger": "^3.1.1",
"@types/koa-router": "^7.4.0",
"@types/koa__cors": "^3.0.1",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.2",
"@types/node-xlsx": "^0.15.0",
"@types/sequelize": "^4.28.8",
"@types/validator": "^12.0.1",
"tslint": "^6.1.1",
"tslint-config-alloy": "^0.2.1",
"typescript": "^3.8.3"
}
}