-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.18 KB
/
package.json
File metadata and controls
38 lines (38 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
{
"name": "mailpress",
"version": "0.0.1",
"type": "module",
"description": "Generated with `npm create pylon`",
"author": "Nico Schett <nico.schett@cronit.io>",
"dependencies": {
"@devoxa/prisma-relay-cursor-connection": "^3.1.2",
"@getcronit/pylon": "^2.8.0",
"@hono/node-server": "^1.13.7",
"@prisma/client": "^5.22.0",
"deep-object-diff": "^1.1.9",
"dotenv": "^16.4.7",
"html-minifier": "^4.0.0",
"html-to-text": "^9.0.5",
"nodemailer": "^6.9.16",
"nodemailer-plugin-inline-base64": "^2.1.1",
"prisma": "^5.22.0",
"twig": "^1.17.1"
},
"devDependencies": {
"@types/html-minifier": "^4.0.5",
"@types/html-to-text": "^9.0.4",
"@types/nodemailer": "^6.4.17",
"@types/twig": "^1.12.16",
"@getcronit/pylon-dev": "^1.0.1"
},
"scripts": {
"deploy": "prisma generate && prisma migrate deploy",
"start": "npm run deploy && node --max-old-space-size=8192 --enable-source-maps .pylon/index.js",
"dev": "pylon dev -c 'node --max-old-space-size=512 --enable-source-maps .pylon/index.js'",
"build": "prisma generate && pylon build",
"migrate": "prisma migrate dev"
},
"engines": {
"node": "20.x"
}
}