-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
32 lines (32 loc) · 853 Bytes
/
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
{
"name": "koa-typescript-example",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build-server": "tslint --project . && tsc",
"watch-server": "cross-env NODE_ENV=development nodemon --watch 'src/**/*' -e ts,tsx --exec ts-node --inspect-brk=19887 src/server/server.ts"
},
"devDependencies": {
"@types/knex": "0.0.64",
"@types/koa": "2.0.39",
"@types/koa-router": "7.0.23",
"@types/pg": "^7.1.5",
"cross-env": "5.0.5",
"nodemon": "1.12.0",
"ts-node": "^3.3.0",
"tslint": "5.7.0",
"typescript": "2.5.2"
},
"dependencies": {
"injection-js": "^2.2.0",
"knex": "^0.13.0",
"koa": "2.3.0",
"koa-bodyparser": "^4.2.0",
"koa-router": "7.2.1",
"pg": "^7.4.0",
"routing-controllers": "^0.7.6",
"typedi": "^0.5.2"
},
"license": "ISC"
}