-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.19 KB
/
package.json
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
{
"name": "restate-ts-template",
"version": "0.0.1",
"description": "Template for JavaScript/TypeScript services running with Restate (https://github.com/restatedev/) ",
"main": "app.js",
"type": "commonjs",
"scripts": {
"proto": "cd proto && npx buf mod update && npx buf generate .",
"build": "tsc --noEmitOnError",
"prebundle": "rm -rf dist",
"bundle": "esbuild src/app.ts --bundle --minify --sourcemap --platform=node --target=es2020 --outfile=dist/index.js",
"postbundle": "cd dist && zip -r index.zip index.js*",
"app": "node ./dist/app.js",
"app-dev": "ts-node-dev --watch ./src --respawn --transpile-only ./src/app.ts"
},
"dependencies": {
"@react-email/components": "0.0.15",
"@react-email/render": "0.0.12",
"@restatedev/restate-sdk": "^0.8.1",
"nodemailer": "^6.9.11",
"protobufjs": "^7.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-proto": "^1.140.0"
},
"devDependencies": {
"@bufbuild/buf": "1.26.1",
"@types/nodemailer": "^6.4.14",
"@types/react": "^18.2.62",
"esbuild": "^0.20.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.2",
"vitest": "^1.3.1"
},
"packageManager": "[email protected]"
}