-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.42 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
{
"name": "koa-base-ts",
"version": "0.0.1",
"description": "Node.js & Koa2 & TypeScript & MVC & mongoose & swagger & joi",
"scripts": {
"start": "npm run build && node dist/app.js",
"build": "rimraf dist && tsc",
"dev": "nodemon --watch 'src/' -e ts --exec ts-node ./src/app.ts",
"prd": "pm2 start dist/app.js --name=koa-base-ts",
"stop": "pm2 stop koa-base-ts && pm2 delete koa-base-ts",
"test": "echo \"Error: no test specified\" && exit 1",
"del": "rimraf node_modules dist yarn.lock"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@lxsbw/koa-joi-swagger-ts": "^1.0.10",
"joi": "^14.3.1",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-convert": "^2.0.0",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.1",
"koa-onerror": "^4.1.0",
"koa-router": "^10.0.0",
"koa-static": "^5.0.0",
"lodash": "^4.17.20",
"mongoose": "~5.10.19",
"rimraf": "^3.0.2"
},
"devDependencies": {
"@types/joi": "^14.3.3",
"@types/koa": "^2.11.6",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-convert": "^1.2.3",
"@types/koa-json": "^2.0.18",
"@types/koa-logger": "^3.1.1",
"@types/koa-router": "^7.4.1",
"@types/koa-static": "^4.0.1",
"@types/lodash": "^4.14.167",
"@types/mongoose": "~5.10.3",
"@types/node": "^14.14.20",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}