-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.59 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.59 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
53
54
55
56
57
58
{
"name": "resend-box",
"version": "0.3.1",
"description": "Local Resend API mock and SMTP server with web UI for email testing",
"type": "module",
"workspaces": [
"ui"
],
"bin": {
"resend-box": "./dist/cli.js"
},
"repository": "https://github.com/tomaspozo/resend-box",
"scripts": {
"build": "tsc && npm run build:ui",
"build:ui": "npm run build -w resend-box-ui",
"dev": "concurrently -n server,ui -c blue,magenta \"tsx watch server/cli.ts start\" \"npm run dev -w resend-box-ui\"",
"dev:server": "tsx watch server/cli.ts start",
"dev:ui": "npm run dev -w resend-box-ui",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,css,md}\"",
"start": "node dist/cli.js start",
"init": "node dist/cli.js init",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"resend",
"smtp",
"email",
"sandbox",
"testing",
"mock"
],
"author": "Tomás Pozo",
"license": "MIT",
"dependencies": {
"commander": "^12.0.0",
"dotenv": "^17.2.3",
"express": "^4.21.1",
"mailparser": "^3.7.0",
"nanoid": "^5.0.7",
"smtp-server": "^3.15.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/mailparser": "^3.4.6",
"@types/node": "^22.10.2",
"@types/smtp-server": "^3.5.12",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.6.2",
"concurrently": "^9.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}