-
Notifications
You must be signed in to change notification settings - Fork 123
/
package.json
33 lines (33 loc) · 1.4 KB
/
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": "generative-ai-use-cases-jp",
"private": true,
"version": "1.0.0",
"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",
"extension:ci": "cd browser-extension && npm ci",
"extension:dev": "cd browser-extension && npm run dev",
"extension:devw": "source ./setup-env.sh && cd browser-extension && npm run dev",
"extension:build": "cd browser-extension && npm run build",
"extension:buildw": "source ./setup-env.sh && cd browser-extension && npm run build",
"extension:lint": "npx prettier --write browser-extension/. && cd browser-extension && npm run lint"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.7",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.13",
"tailwind-scrollbar": "^3.1.0",
"vite-plugin-pwa": "^0.19.8"
},
"workspaces": [
"packages/*"
]
}