-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
38 lines (38 loc) · 1.23 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
{
"name": "@node-ts/bus-starter",
"version": "0.0.1",
"description": "An empty starter project for @node-ts/bus for writing distributed message based applications with Node",
"main": "index.js",
"repository": "https://github.com/node-ts/bus-starter.git",
"license": "MIT",
"engines": {
"node": "14.x"
},
"scripts": {
"build": "esbuild ./src/index.ts --bundle --platform=node --format=cjs --sourcemap=external --outdir=dist",
"dev": "nodemon --watch ./src -e ts --exec 'npm run dev:rebuild'",
"dev:rebuild": "npm run build && node --enable-source-maps dist/index.js",
"lint": "tslint --project tsconfig.json",
"lint:fix": "npm run lint --fix",
"test": "jest --config=jest.config.json",
"test:watch": "npm run test -- --watch"
},
"dependencies": {
"@node-ts/bus-core": "^1.0.3",
"@node-ts/bus-messages": "^1.0.0",
"@node-ts/bus-rabbitmq": "^1.0.5",
"reflect-metadata": "^0.1.13",
"uuid": "^7.0.3"
},
"devDependencies": {
"@node-ts/code-standards": "^0.0.10",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.3",
"@types/uuid": "^7.0.5",
"esbuild": "^0.13.8",
"esbuild-jest": "^0.5.0",
"jest": "^27.3.1",
"nodemon": "^2.0.13",
"tslint": "^6.1.3"
}
}