forked from sctg-development/vite-react-heroui-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.28 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.28 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
34
35
36
37
38
39
{
"name": "vite-react-heroui-auth0-template",
"private": true,
"version": "1.0.0",
"type": "module",
"packageManager": "npm@11.6.2",
"workspaces": [
"apps/*"
],
"scripts": {
"build": "turbo run build",
"build:env": "bash -c 'turbo run build:env -- \"$@\"' --",
"dev": "turbo run dev",
"dev:env": "turbo run dev:env",
"preview:env": "turbo run preview:env",
"lint": "turbo run lint",
"test": "turbo run test",
"type-check": "turbo run type-check",
"clean": "turbo run clean && rm -rf node_modules",
"dev:client": "turbo run dev --filter=client",
"dev:worker": "turbo run dev --filter=cloudflare-worker",
"dev:client:env": "turbo run dev:env --filter=client",
"dev:worker:env": "turbo run dev:env --filter=cloudflare-worker",
"build:client": "turbo run build --filter=client",
"build:worker": "turbo run build --filter=cloudflare-worker",
"build:client:env": "turbo run build:env --filter=client",
"build:worker:env": "turbo run build:env --filter=cloudflare-worker",
"deploy:worker": "turbo run deploy --filter=cloudflare-worker"
},
"devDependencies": {
"@heroui/react-mcp": "^1.1.0",
"@types/node": "^24.10.11",
"turbo": "^2.9.5",
"typescript": "^5.9.2"
},
"engines": {
"node": ">=24.0.0"
}
}