-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.8 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
{
"name": "message-queuing",
"version": "1.0.0",
"description": "A implementation of queueing messages into a database using Redis, BullJS and MongoDB.",
"scripts": {
"build": "tsc",
"start": "node ./dist/index.js",
"dev": "cross-env NODE_ENV=local NODE_PATH=./src nodemon --watch \"src/\" --exec \"ts-node ./src/index.ts\" -e ts --sourceMap=true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thiagoripardo/message-queuing.git"
},
"keywords": [
"bull",
"bulljs",
"message",
"message-queuing",
"mongodb",
"queue",
"queuing",
"redis"
],
"author": "Thiago Ripardo",
"license": "MIT",
"bugs": {
"url": "https://github.com/thiagoripardo/message-queuing/issues"
},
"homepage": "https://github.com/thiagoripardo/message-queuing#readme",
"dependencies": {
"bluebird": "^3.7.2",
"bull": "^4.5.1",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"module-alias": "^2.2.2",
"mongoose": "^6.2.1",
"redis": "^4.0.3",
"typescript": "^4.5.5"
},
"devDependencies": {
"@types/bluebird": "^3.5.36",
"@types/bull": "^3.15.7",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/lodash": "^4.14.178",
"@types/node": "^17.0.16",
"@types/redis": "^4.0.11",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"cross-env": "^7.0.3",
"eslint": "^8.8.0",
"nodemon": "^2.0.15",
"ts-node": "^10.5.0"
},
"_moduleAliases": {
"configs": "dist/configs",
"controllers": "dist/controllers",
"middlewares": "dist/middlewares",
"models": "dist/models",
"repositories": "dist/repositories",
"routes": "dist/routes",
"services": "dist/services",
"validations": "dist/validations"
}
}