forked from microsoft/aspire.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 759 Bytes
/
package.json
File metadata and controls
18 lines (18 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "root",
"private": true,
"description": "Root-level package.json delegating to src/frontend.",
"scripts": {
"install": "pnpm --dir ./src/frontend i",
"dev": "pnpm --dir ./src/frontend run dev",
"build": "pnpm --dir ./src/frontend run build",
"build:skip-search": "pnpm --dir ./src/frontend run build:skip-search",
"preview": "pnpm --dir ./src/frontend run preview",
"test": "pnpm --dir ./src/frontend run test",
"test:all": "pnpm --dir ./src/frontend run test:all",
"test:report": "pnpm --dir ./src/frontend exec playwright show-report",
"lint": "pnpm --dir ./src/frontend run lint",
"format": "pnpm --dir ./src/frontend run format",
"update:all": "pnpm --dir ./src/frontend run update:all"
}
}