-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.18 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.18 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
{
"name": "simple-email-forward",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "node scripts/startServer.js dev",
"dev:direct": "next dev -p ${PORT:-3000}",
"build": "next build",
"start": "node scripts/startServer.js start",
"start:direct": "next start -p ${PORT:-3000}",
"lint": "eslint",
"add-rule": "node scripts/addRule.js",
"test-email": "node scripts/testEmail.js",
"db:backup": "cp emails.db emails.db.backup",
"db:restore": "cp emails.db.backup emails.db",
"cleanup": "curl -X GET \"http://localhost:${PORT:-3000}/api/webhook/email?action=cleanup&token=your-cleanup-token\""
},
"dependencies": {
"axios": "^1.13.2",
"better-sqlite3": "^12.5.0",
"date-fns": "^4.1.0",
"dotenv": "^17.2.3",
"mailparser": "^3.9.0",
"next": "16.0.7",
"react": "19.2.0",
"react-dom": "19.2.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/better-sqlite3": "^7.6.13",
"@types/mailparser": "^3.4.4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.0.7",
"tailwindcss": "^4",
"typescript": "^5"
}
}