-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.24 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
{
"name": "mailer-service",
"version": "1.0.0",
"description": "Mail service that sends email",
"main": "dist/src/index.js",
"scripts": {
"start:dev": "ts-node-dev ./src",
"start:workers": "tsc && node dist/src/workers/index.js",
"start:workers-dev": "ts-node-dev ./src/workers",
"start": "tsc && node dist/src/index.js",
"start:server": "tsc && node dist/src/test-server.js",
"build": "npx tsc",
"test": "cross-env NODE_ENV=test jest --testTimeout=10000"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.9",
"@types/nodemailer": "^6.4.4",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.3",
"concurrently": "^6.4.0",
"cross-env": "^7.0.3",
"jest": "^27.3.1",
"supertest": "^6.1.6",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.2"
},
"dependencies": {
"bullmq": "^1.54.2",
"cors": "^2.8.5",
"dayjs": "^1.10.7",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"got": "^11.8.3",
"nodemailer": "^6.7.1",
"puppeteer": "^11.0.0",
"uuid": "^8.3.2"
}
}