-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) 路 1.5 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) 路 1.5 KB
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
{
"name": "koa-ts-node",
"version": "2.0.0",
"description": "a pure server-end koa framework which use ts-node and typescript directly.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"server": "npx pm2 start ts-node -- -r tsconfig-paths/register ./app.ts --watch --files",
"debug": "npx ts-node -r tsconfig-paths/register app.ts --files",
"create-model": "npx ts-node ./lib/scripts/createModel.ts"
},
"author": "pomelott",
"license": "ISC",
"dependencies": {
"@types/koa": "^2.11.4",
"@types/koa-router": "^7.4.1",
"@types/log4js": "^2.3.5",
"@types/node": "^14.6.1",
"@types/nunjucks": "^3.1.5",
"chai": "^4.2.0",
"ejs": "^2.6.1",
"import-esm-directory": "^2.0.1",
"jsonwebtoken": "^8.5.1",
"koa": "^2.7.0",
"koa-body": "^4.1.0",
"koa-bodyparser": "^4.2.1",
"koa-ejs": "^4.2.0",
"koa-jwt": "^3.5.1",
"koa-multer": "^1.0.2",
"koa-nunjucks-2": "^3.0.2",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"koa-views": "^6.2.0",
"log4js": "^4.3.1",
"mysql": "^2.18.1",
"nunjucks": "^3.2.3",
"pm2": "^4.4.1",
"reflect-metadata": "^0.1.13",
"tsconfig-paths": "^3.9.0",
"typeorm": "^0.2.25",
"typeorm-model-generator": "^0.4.2"
},
"devDependencies": {
"ts-node": "^9.0.0",
"typescript": "^3.9.7"
},
"keywords": [
"koa",
"typescript",
"koa2",
"ts",
"ts-node"
],
"engines": {
"node": "12.18.4",
"npm": "6.14.6"
}
}