-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 870 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "haflow",
"private": true,
"version": "1.0.0",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/oxedom/haflow.git"
},
"description": "",
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.28.0",
"scripts": {
"dev": "pnpm --filter @haflow/shared build && pnpm --parallel --filter @haflow/backend --filter frontend dev",
"build:all": "pnpm --filter @haflow/shared build && pnpm --filter @haflow/backend build && pnpm --filter frontend build && pnpm --filter @haflow/cli build && pnpm --filter site build",
"test": "pnpm --filter @haflow/backend test && pnpm --filter @haflow/cli test && pnpm --filter frontend test:e2e",
"site:dev": "pnpm --filter site dev",
"site:build": "pnpm --filter site build",
"site:preview": "pnpm --filter site preview"
}
}