-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 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
39
40
41
42
43
44
{
"name": "rabbitmq-nodejs-real-time-app",
"version": "1.0.0",
"description": "A real time application project with usage of RabbitMQ and Node.js.",
"main": "dist/app.js",
"type": "module",
"scripts": {
"ts-to-js": "rimraf dist && tsc --pretty",
"prestart": "npm run ts-to-js",
"dev:ts-app-watch": "tsc -w",
"dev:js-app-watch": "nodemon --watch dist dist/app.js",
"dev": "concurrently \"npm run dev:ts-app-watch\" \"npm run dev:js-app-watch\"",
"build": "npm run ts-to-js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sanjaydeveloper15/rabbitmq-nodejs-real-time-app.git"
},
"keywords": [
"nodejs",
"rabbitmq",
"nodejs-rabbitmq",
"real-time-application"
],
"author": "Sanjay Kumar",
"license": "MIT",
"bugs": {
"url": "https://github.com/sanjaydeveloper15/rabbitmq-nodejs-real-time-app/issues"
},
"dependencies": {
"amqplib": "^0.10.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"rimraf": "^6.0.1"
},
"devDependencies": {
"@types/amqplib": "^0.10.6",
"@types/express": "^5.0.0",
"concurrently": "^9.1.0",
"nodemon": "^3.1.9",
"typescript": "^5.7.2"
}
}