-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 812 Bytes
/
Copy pathpackage.json
File metadata and controls
20 lines (20 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "fyrastack",
"private": true,
"version": "0.0.1",
"type": "module",
"packageManager": "pnpm@11.9.0",
"scripts": {
"build": "pnpm -r build",
"dev": "pnpm -r --parallel dev",
"check": "pnpm -r check",
"lint": "pnpm -r lint",
"test:accessibility": "pnpm --filter stack-dashboard run test:accessibility",
"test:accessibility:ci": "pnpm --filter stack-dashboard run test:accessibility:ci",
"format": "pnpm -r format",
"cf:deploy": "pnpm -r build && pnpm --filter stack-dashboard run cf:deploy && pnpm --filter stack-dashboard-cron run cf:deploy",
"cf:deploy:preview": "pnpm --filter stack-dashboard run cf:deploy:preview && pnpm --filter stack-dashboard-cron run cf:deploy:preview",
"dashboard": "pnpm --filter stack-dashboard",
"cron": "pnpm --filter stack-dashboard-cron"
}
}