forked from reod/heksy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.02 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
{
"name": "",
"version": "1.0.0",
"description": "",
"main": "build/index.js",
"scripts": {
"test": "tsc && mocha build/test",
"build": "tsc",
"start": "npm run build; node build/index.js",
"dev-server": "nodemon -w src -x ts-node src/http/server/index.ts",
"lint": "tslint src/**/*.ts"
},
"keywords": [],
"author": "Remek Ambroziak <[email protected]",
"license": "ISC",
"dependencies": {
"@types/koa": "^2.0.38",
"@types/koa-bodyparser": "^3.0.23",
"@types/koa-router": "^7.0.21",
"@types/node": "^7.0.8",
"koa": "^2.0.0-alpha.8",
"koa-bodyparser": "^3.2.0",
"koa-multer": "^1.0.1",
"koa-router": "^7.0.1",
"mongoose": "^4.8.5",
"routing-controllers": "^0.6.10",
"ts-node": "^1.7.3",
"typescript": "^2.2.1",
"typings": "^2.1.0"
},
"devDependencies": {
"nodemon": "^1.11.0",
"ts-node": "^2.1.0",
"tslint": "^4.5.1",
"typescript": "^2.0.10",
"typings": "^2.0.0"
},
"repository": {
"url": "",
"type": "git"
}
}