forked from Alexander-Infante/cdk-bedrock-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.01 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.01 KB
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": "cdk-bedrock-app",
"version": "0.1.0",
"bin": {
"cdk-bedrock-app": "bin/cdk-bedrock-app.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"dev": "serverless offline start",
"install-all": "find . -name 'package.json' -not -path '**/node_modules/*' -execdir npm install \\;",
"build-all": "npm run install-all && find . -name 'package.json' -not -path '**/node_modules/*' -execdir npm run build \\;",
"clean": "find . -type f -name '*.js' -not -path '**/node_modules/*' -delete && find . -type f -name '*.d.ts' -not -path '**/node_modules/*' -delete"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "20.11.19",
"aws-cdk": "2.132.1",
"jest": "^29.7.0",
"serverless": "^4.3.2",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "~5.3.3"
},
"dependencies": {
"aws-cdk-lib": "2.132.1",
"constructs": "^10.0.0",
"dotenv": "^16.4.5",
"source-map-support": "^0.5.21"
}
}