-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.31 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
{
"name": "koanestts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "nodemon --watch c/** -e ts,tsx --exec npx ts-node ./c/main.ts",
"dev": "cross-env NODE_ENV=development&&nodemon --watch src -e ts,tsx --exec npx ts-node -r tsconfig-paths/register ./src/index.ts",
"build": "cross-env NODE_ENV=production&& tsc && tsc-alias && nodemon dist/index.js --watch dist",
"pm2": "cross-env NODE_ENV=production && tsc && pm2 start dist/index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"class-validator": "^0.13.2",
"db-sql": "^1.0.0",
"dotenv": "^16.0.3",
"inversify": "^6.0.1",
"ioc-typescript": "^1.0.3",
"koa": "^2.11.0",
"koa-art-template": "^1.1.1",
"koa-bodyparser": "^4.3.0",
"koa-router": "^7.4.0",
"koa-router-decorator2": "^1.0.2",
"koa2-cors": "^2.0.6",
"mysql": "^2.17.1",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/koa": "^2.11.0",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-router": "^7.0.42",
"@types/koa2-cors": "^2.0.2",
"@types/mysql": "^2.15.8",
"@types/node": "^12.20.55",
"nodemon": "^1.19.0",
"ts-node": "^8.4.1",
"tsc-alias": "^1.8.6",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.4.0",
"typescript": "^4.4.5"
}
}