forked from G4brym/R2-Explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
23 lines (23 loc) · 1013 Bytes
/
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
{
"name": "r2-explorer-root",
"version": "0.0.0",
"private": true,
"scripts": {
"prepare": "husky",
"workers-ci": "export WORKERS_CI=1 && node packages/github-action/prepareDeploy.js",
"lint": "npx @biomejs/biome check template/ packages/dashboard/src packages/worker/src || (npx @biomejs/biome check --write template/ packages/dashboard/src packages/worker/src/; exit 1)",
"build-dashboard": "pnpm run --filter r2-explorer-dashboard build",
"build-worker": "pnpm run --filter r2-explorer build",
"build": "pnpm build-dashboard && pnpm build-worker",
"deploy-dashboard": "pnpm run --filter r2-explorer-dashboard deploy",
"deploy-dashboard-dev": "pnpm run --filter r2-explorer-dashboard deploy-dev",
"deploy-dev-worker": "pnpm run --filter r2-explorer-dev-worker deploy",
"package": "pnpm run --filter r2-explorer package",
"publish-npm": "pnpm run --filter r2-explorer publish-npm"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"husky": "^9.1.7",
"wrangler": "^3.99.0"
}
}