-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 754 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 754 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
{
"name": "groowooth-monorepo",
"private": true,
"type": "module",
"packageManager": "pnpm@10.33.2",
"scripts": {
"dev": "pnpm --filter @groowooth/core build --watch",
"dev:web": "pnpm --filter @groowooth/web dev",
"build": "pnpm -r run build",
"build:web": "pnpm --filter @groowooth/web build",
"build:standards": "pnpm exec tsx scripts/build-standards.ts",
"deploy:web": "pnpm build:web && npx wrangler pages deploy packages/web/dist --project-name=groowooth",
"test": "vitest run",
"lint": "pnpm -r run lint",
"format": "prettier --write ."
},
"devDependencies": {
"@types/node": "^24.12.2",
"prettier": "^3.8.3",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}