-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 828 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 828 Bytes
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
{
"name": "reliable-mail",
"version": "1.0.0",
"description": "A transactional email API with guaranteed delivery",
"type": "module",
"main": "dist/server.js",
"scripts": {
"start": "node dist/server.js",
"dev": "npm run build && node dist/server.js",
"build": "tsc && cp src/db/schema.sql dist/db/",
"test": "ts-node --esm tests/integration.test.ts"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"bullmq": "^5.8.2",
"express": "^4.18.2",
"pg": "^8.11.3",
"redis": "^4.7.0",
"resend": "^3.2.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.3",
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"@types/pg": "^8.10.9",
"dotenv": "^17.3.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}