forked from floci-io/floci-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 804 Bytes
/
Copy pathpackage.json
File metadata and controls
20 lines (20 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "floci-ui",
"version": "0.2.0",
"description": "Any Cloud. Locally. — the local cloud console for Floci, an AWS-Console-style UI for your multi-cloud runtime.",
"private": true,
"packageManager": "pnpm@9.2.0",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "sh -c 'PORT=4501 pnpm dev:api & pnpm dev:web'",
"dev:web": "pnpm --filter @floci/frontend dev",
"build": "pnpm --filter @floci/frontend build",
"lint": "pnpm --filter @floci/frontend lint",
"type-check": "pnpm --filter @floci/api type-check && pnpm --filter @floci/frontend type-check",
"test": "pnpm --filter @floci/api test",
"dev:api": "sh -c 'PORT=${PORT:-4501} pnpm --filter @floci/api dev'",
"start:api": "sh -c 'PORT=${PORT:-4501} pnpm --filter @floci/api start'"
}
}