forked from aws-samples/dify-self-hosted-on-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 879 Bytes
/
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": "dify-on-aws-cdk",
"bin": {
"dify-on-aws-cdk": "bin/cdk.js"
},
"scripts": {
"build": "tsc",
"format": "prettier --write './**/*.ts'",
"format:check": "prettier --check './**/*.ts'",
"synth": "cdk -a 'npx ts-node --prefer-ts-exts bin/deploy.ts' --version-reporting false --path-metadata false synth > deploy.yaml",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "20.12.7",
"aws-cdk": "^2.148.0",
"esbuild": "^0.21.5",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "~5.4.5"
},
"dependencies": {
"@types/aws-lambda": "^8.10.138",
"aws-cdk-lib": "^2.148.0",
"cdk-time-sleep": "^0.0.5",
"constructs": "^10.0.0",
"source-map-support": "^0.5.21"
}
}