-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1 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
{
"name": "auto-email-system",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently \"npm:dev:api\" \"npm:dev:web\"",
"dev:api": "tsx watch server/src/server.ts",
"dev:web": "vite --host 127.0.0.1",
"build": "tsc --noEmit && vite build",
"start": "tsx server/src/server.ts"
},
"dependencies": {
"@phosphor-icons/react": "^2.1.10",
"@vitejs/plugin-react": "^5.1.1",
"cors": "^2.8.5",
"dompurify": "^3.4.11",
"express": "^5.2.1",
"imapflow": "^1.2.1",
"mailparser": "^3.9.0",
"qrcode": "^1.5.4",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"zod": "^4.2.1"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/mailparser": "^3.4.6",
"@types/node": "^24.10.2",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"concurrently": "^9.2.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.2.7"
}
}