-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.02 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.02 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": "event_support_ai",
"private": true,
"version": "0.0.1",
"scripts": {
"lint": "run-s root:lint webapp:lint cdk:lint",
"root:lint": "npx prettier --write .",
"web:devw": "source ./setup-env.sh && npm -w packages/webapp run dev",
"web:dev": "npm -w packages/webapp run dev",
"web:build": "npm -w packages/webapp run build",
"web:lint": "npm -w packages/webapp run lint",
"cdk:deploy": "npm -w packages/cdk run cdk deploy -- --all",
"cdk:destroy": "npm -w packages/cdk run cdk destroy",
"cdk:lint": "npm -w packages/cdk run lint"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.4",
"crypto-browserify": "^3.12.0",
"css-select": "^5.1.0",
"domain-browser": "^5.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.4.1",
"tailwind-scrollbar": "^3.0.5"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"@aws-sdk/client-bedrock": "^3.799.0",
"@aws-sdk/client-bedrock-runtime": "^3.799.0"
}
}