-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 930 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 930 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
31
{
"name": "@restatedev/typescript-lambda-cdk",
"version": "0.1.0",
"bin": {
"lambda-ts-cdk": "bin/lambda-ts-cdk.js"
},
"scripts": {
"lint": "eslint --ignore-path .eslintignore --ext .ts .",
"build": "npx cdk synth",
"format": "prettier --ignore-path .eslintignore --write \"**/*.+(js|ts|json)\"",
"verify": "npm run format -- --check && npm run lint && npm run build",
"deploy": "npm run build && npx cdk deploy",
"destroy": "npx cdk destroy"
},
"devDependencies": {
"@restatedev/restate-cdk": "^1.6.0",
"@types/node": "22.5.2",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"aws-cdk": "^2.155.0",
"esbuild": "^0.25.4",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"dependencies": {
"@restatedev/restate-sdk": "^1.14.4",
"aws-cdk-lib": "^2.155.0",
"constructs": "^10.3.0",
"source-map-support": "^0.5.21"
}
}