-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 888 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 888 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
{
"name": "react-email-microservice",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"dev": "email dev --dir ./app/emails",
"build": "rm -rf dist && rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
"start": "node ./dist/index.js"
},
"dependencies": {
"@react-email/components": "0.0.31",
"express": "^4.21.2",
"react": "19.0.0",
"react-dom": "19.0.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.2",
"@types/express": "^5.0.0",
"@types/node": "^22.10.5",
"@types/react": "19.0.1",
"@types/react-dom": "19.0.1",
"glob": "^11.0.0",
"react-email": "3.0.4",
"rollup": "^4.29.1",
"tslib": "^2.8.1",
"typescript": "^5.7.2"
}
}