-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.01 KB
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
{
"name": "nodejs-queue",
"version": "1.0.0",
"description": "Simple project to learn how queues work",
"main": "dist/app.js",
"scripts": {
"dev": "nodemon --config nodemon.json src/app.ts",
"dev:debug": "nodemon --config nodemon.json --inspect-brk src/app.ts",
"start": "tsc && node dist/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zubs/nodejs-queue.git"
},
"keywords": [],
"author": "Zubs <zubairidrisaweda@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Zubs/nodejs-queue/issues"
},
"homepage": "https://github.com/Zubs/nodejs-queue#readme",
"dependencies": {
"@types/bull": "^4.10.0",
"@types/express": "^4.17.17",
"@types/node": "^20.3.3",
"@types/nodemailer": "^6.4.8",
"body-parser": "^1.20.2",
"bull": "^4.10.4",
"bull-board": "^2.1.3",
"express": "^4.18.2",
"nodemailer": "^6.9.3",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^5.1.6"
}
}