-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 639 Bytes
/
Copy pathpackage.json
File metadata and controls
19 lines (19 loc) · 639 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "termote-monorepo",
"private": true,
"type": "module",
"description": "Termote monorepo root (pwa + website)",
"license": "MIT",
"scripts": {
"dev": "pnpm --filter termote dev",
"dev:web": "pnpm --filter @termote/website dev",
"build": "pnpm -r build",
"build:pwa": "pnpm --filter termote build",
"build:web": "pnpm --filter @termote/website build",
"lint": "pnpm --filter termote lint",
"lint:ci": "pnpm --filter termote lint:ci",
"test": "pnpm --filter termote test",
"test:coverage": "pnpm --filter termote test:coverage",
"test:e2e": "pnpm --filter termote test:e2e"
}
}