-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
33 lines (33 loc) · 1.06 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
{
"name": "restate-holiday",
"version": "1.0.0",
"description": "Restate Holiday: a Saga pattern demonstration",
"type": "commonjs",
"scripts": {
"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": {
"@aws-sdk/client-dynamodb": "^3.592.0",
"@aws-sdk/client-sns": "^3.592.0",
"@restatedev/restate-cdk": "0.0.0-SNAPSHOT-20240613115150",
"@restatedev/restate-sdk": "^1.0.0",
"aws-cdk-lib": "^2.145.0",
"constructs": "^10.3.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/source-map-support": "^0.5.10",
"@types/uuid": "^9.0.8",
"aws-cdk": "^2.145.0",
"esbuild": "^0.21.5",
"prettier": "3.3.2",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5"
}
}