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