-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 988 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 988 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
34
35
36
37
38
39
{
"name": "resend-dmarc-analyzer",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@11.3.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"format": "biome format --write",
"email": "email dev --dir src/emails --port 3003",
"test:email": "tsx scripts/send-test-email.ts"
},
"dependencies": {
"fast-xml-parser": "5.3.8",
"jszip": "3.10.1",
"next": "16.1.6",
"pako": "2.1.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"resend": "6.9.3"
},
"devDependencies": {
"@biomejs/biome": "2.3.13",
"@react-email/ui": "6.1.1",
"@tailwindcss/postcss": "4.2.1",
"@types/node": "^20",
"@types/pako": "^2.0.4",
"@types/react": "^19",
"@types/react-dom": "^19",
"dotenv": "^17.2.3",
"react-email": "6.1.1",
"tailwindcss": "4.2.1",
"tsx": "^4.21.0",
"typescript": "^5"
}
}