forked from aws-samples/generative-ai-use-cases
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 941 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 941 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
{
"name": "generative-ai-use-cases-jp",
"private": true,
"version": "0.0.5",
"scripts": {
"lint": "run-s root:lint web:lint cdk:lint",
"root:lint": "npx prettier --write .",
"web:devw": "source ./setup-env.sh && VITE_APP_VERSION=${npm_package_version} npm -w packages/web run dev",
"web:dev": "VITE_APP_VERSION=${npm_package_version} npm -w packages/web run dev",
"web:build": "VITE_APP_VERSION=${npm_package_version} npm -w packages/web run build",
"web:lint": "npm -w packages/web 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",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.4.1",
"tailwind-scrollbar": "^3.0.5"
},
"workspaces": [
"packages/*"
]
}