-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.4 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": "@henricker/ms-mail-sender",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --watchAll --detectOpenHandles",
"build": "tsc && cp package.json ./build && cp .env ./build",
"dev": "npm-run-all -p dev:*",
"dev:kafka": "ts-node-dev --ignore-watch node_modules --transpile-only src/application/kafka.ts",
"dev:queue": "ts-node-dev --ignore-watch node_modules --transpile-only src/application/queue.ts",
"dev:express": "ts-node-dev --ignore-watch node_modules --transpile-only src/application/express.ts",
"start": "npm-run-all -p start:*",
"start:kafka": "node src/application/kafka.js",
"start:queue": "node src/application/queue.js",
"start:express":"node src/application/express.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bull": "^3.15.4",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.1",
"@types/node": "^16.9.1",
"@types/nodemailer": "^6.4.4",
"@types/supertest": "^2.0.11",
"supertest": "^6.1.6",
"ts-jest": "^27.0.5",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.2"
},
"dependencies": {
"bull": "^3.29.2",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"handlebars": "^4.7.7",
"jest": "^27.2.0",
"kafkajs": "^1.15.0",
"nodemailer": "^6.6.3",
"npm-run-all": "^4.1.5"
}
}