-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.12 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "node-event-manager",
"version": "1.0.0",
"description": "A nodeJS Event Manager to emit, and listen event through nodeJS",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"start": "npm run build && node build/index.js",
"start:dev": "nodemon",
"build": "rimraf ./build && tsc",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samsoft00/node-typescript-api-starter.git"
},
"keywords": [
"node",
"event",
"azure",
"serviceBus",
"AzureServiceBus",
"event-manager",
"event emitter",
"amqp",
"RabbitMQ"
],
"author": {
"email": "[email protected]",
"name": "Oyewole Abayomi"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/samsoft00/node-typescript-api-starter/issues"
},
"homepage": "https://github.com/samsoft00/node-typescript-api-starter#readme",
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/compression": "^1.7.0",
"@types/config": "0.0.36",
"@types/cors": "^2.8.6",
"@types/eslint": "^6.1.8",
"@types/express": "^4.17.3",
"@types/fancy-log": "^1.3.1",
"@types/helmet": "0.0.45",
"@types/lodash": "^4.14.149",
"@types/lusca": "^1.6.1",
"@types/morgan": "^1.9.0",
"@types/node": "^13.9.1",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"nodemon": "^2.0.2",
"npm-check-updates": "^4.0.4",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
},
"dependencies": {
"@azure/service-bus": "^1.1.6",
"eventemitter2": "^6.4.0",
"fancy-log": "^1.3.3",
"lodash": "^4.17.15"
}
}