-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.28 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.28 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
{
"name": "echomail-server",
"private": true,
"version": "1.0.0",
"description": "A secure, private email service for creating free temporary and disposable addresses.",
"homepage": "https://github.com/brianwalczak/echoMail#readme",
"bugs": {
"url": "https://github.com/brianwalczak/echoMail/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brianwalczak/echoMail.git"
},
"license": "Apache-2.0",
"author": "Brian Walczak",
"type": "commonjs",
"main": "index.js",
"scripts": {
"start": "npm run db/migrate:prod && npm run db/generate && node index.js",
"db/generate": "npx prisma generate",
"db/migrate:dev": "npx prisma migrate dev",
"db/migrate:prod": "npx prisma migrate deploy",
"build": "cd client && npm install && npm run build",
"dev": "cd client && npm install && npm run dev"
},
"dependencies": {
"@prisma/client": "^6.15.0",
"bcryptjs": "^3.0.2",
"chalk": "^4.1.2",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dkim": "^0.8.0",
"dotenv": "^17.2.2",
"express": "^5.1.0",
"express-rate-limit": "^8.0.1",
"luxon": "^3.7.1",
"mailparser": "^3.7.4",
"simple-mail-smtp": "^1.0.5",
"smtp-server": "^3.14.0"
},
"devDependencies": {
"prisma": "^6.15.0"
}
}