-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.41 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
{
"name": "chat",
"version": "1.0.0",
"description": "Startup Node app with Koa, Typescript, Docker, Jest, and ESLint",
"main": "index.js",
"scripts": {
"serve": "ts-node src/index.ts",
"start": "NODE_ENV=production node dist/index.js",
"clean": "rm -rf dist",
"build": "npm run clean && tsc",
"dev": "nodemon",
"dev:docker-inspect": "concurrently -k -n 'TypeScript,Node' -p '[{name}]' 'tsc -w' 'nodemon --delay 500ms --inspect=0.0.0.0:9229 ./dist/app.js'"
},
"keywords": [],
"author": "Tony Rudny",
"license": "ISC",
"dependencies": {
"concurrently": "^4.1.0",
"http-status-codes": "^1.3.2",
"jest": "^24.1.0",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"morgan": "^1.9.1",
"pg": "^7.10.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.16"
},
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/http-status-codes": "^1.2.0",
"@types/koa": "^2.0.48",
"@types/koa-bodyparser": "^4.2.2",
"@types/koa-router": "^7.0.40",
"@types/node": "^11.13.6",
"dotenv": "^7.0.0",
"nodemon": "^1.18.9",
"ts-node": "^8.0.2",
"tslint": "^5.16.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.1"
}
}