-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.01 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
{
"name": "typescript-koa",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"watch": "./node_modules/.bin/nodemon --watch 'src/**/*' -e ts,tsx --exec 'ts-node' ./src/index.ts",
"start": "./node_modules/.bin/nf start"
},
"keywords": [],
"author": "alextanhongpin <alextan220990@gmail.com>",
"license": "ISC",
"dependencies": {
"bunyan": "^1.8.12",
"convict": "^4.3.0",
"jaeger-client": "^3.10.0",
"koa": "^2.5.1",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"mysql2": "^1.5.3",
"opentracing": "^0.14.3",
"uuid": "^3.2.1"
},
"devDependencies": {
"@types/bunyan": "^1.8.4",
"@types/convict": "^4.2.0",
"@types/koa": "^2.0.46",
"@types/koa-bodyparser": "^4.2.0",
"@types/koa-router": "^7.0.28",
"@types/mysql": "^2.15.5",
"@types/mysql2": "types/mysql2",
"@types/uuid": "^3.4.3",
"ajv": "^6.5.1",
"foreman": "^3.0.0",
"nodemon": "^1.17.5",
"ts-node": "^6.1.1",
"typescript": "^2.9.2"
}
}