-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 904 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
{
"name": "node-microsvc-example",
"version": "0.1.5",
"description": "NodeJS microservice framework example",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node-dev --respawn --transpileOnly ./src/app.ts",
"start": "tsc -p src && node ./src/app.js",
"prod": "NODE_ENV=production node ./src/app.js",
"tsc": "tsc -p src"
},
"author": "Pedro Barreto <[email protected]>",
"license": "ISC",
"dependencies": {
"async": "^2.6.1",
"express": "^4.16.4",
"kafka-node": "^4.0.0",
"node-microsvc-lib": "github:pedrosousabarreto/node-microsvc-lib",
"underscore": "^1.9.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"typescript": "^3.2.2",
"@types/async": "^2.0.50",
"@types/express": "^4.16.0",
"@types/underscore": "^1.8.9",
"@types/uuid": "^3.4.4",
"ts-node-dev": "^1.0.0-pre.32"
}
}