-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.57 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
43
44
45
46
47
48
49
50
51
52
53
{
"name": "@sky-telehouse/sky-bus",
"version": "1.0.1",
"description": "A node-ts/bus extended to use in smart houses",
"main": "index.js",
"repository": "https://github.com/sky-telehouse/sky-bus.git",
"author": {
"email": "[email protected]",
"name": "Semyon Volkov"
},
"license": "MIT",
"scripts": {
"build": "tsc --project tsconfig.json --outdir dist",
"dev": "nodemon --watch ./src -e ts --exec \"yarn dev:rebuild\" dist/index.js",
"dev:rebuild": "yarn build && node dist/index.js",
"lint": "eslint src",
"lint:fix": "yarn lint --fix"
},
"dependencies": {
"@node-ts/bus-core": "^0.5.1",
"@node-ts/bus-messages": "^0.2.1",
"@node-ts/bus-rabbitmq": "^0.5.0",
"@node-ts/bus-workflow": "^0.5.1",
"@node-ts/logger-core": "^0.1.0",
"@node-ts/logger-winston": "^0.1.0",
"@types/express": "^4.17.6",
"@types/md5": "^2.2.0",
"axios": "^0.19.2",
"body-parser": "1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"inversify": "^5.0.1",
"inversify-express-utils": "^6.3.2",
"md5": "^2.3.0",
"moment": "^2.27.0",
"pg": "^8.2.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.24",
"uuid": "^7.0.1",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/uuid": "^7.0.0",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-airbnb-typescript": "9.0.0",
"eslint-plugin-import": "^2.22.0",
"nodemon": "^2.0.2",
"typescript": "^3.4.5"
}
}