-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.29 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.29 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "email-service",
"version": "1.0.0",
"description": "CAN-SPAM compliant bulk email service powered by Resend API",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"build": "tsc",
"check": "npm run build && node --check public/app.js",
"test": "npm run build && node --test tests/*.test.mjs",
"backup": "npm run build && node dist/scripts/backup-data.js"
},
"keywords": [
"resend",
"bulk-email",
"email-service",
"email-marketing",
"newsletter",
"can-spam",
"admin-dashboard",
"self-hosted",
"sqlite",
"typescript"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/okjusthere/emailService.git"
},
"homepage": "https://github.com/okjusthere/emailService",
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.6",
"@types/multer": "^2.1.0",
"@types/node": "^25.5.0",
"@types/uuid": "^10.0.0",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
},
"dependencies": {
"better-sqlite3": "^12.8.0",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"multer": "^2.1.1",
"p-queue": "^9.1.0",
"resend": "^6.9.4",
"uuid": "^13.0.0"
}
}