-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 857 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"name": "arrhes",
"private": true,
"license": "AGPL-3.0-only",
"scripts": {
"dev": "pnpm --recursive --if-present --parallel --filter='./packages/**' run dev",
"build": "pnpm --recursive --if-present --filter='./packages/**' run build",
"check": "biome check .",
"check:fix": "biome check --fix .",
"format": "biome format .",
"format:fix": "biome format --fix .",
"lint": "biome lint .",
"lint:fix": "biome lint --fix .",
"test": "pnpm --recursive --if-present --filter='./packages/**' run test",
"test:e2e": "playwright test --config=tests/playwright.config.ts"
},
"devDependencies": {
"@biomejs/biome": "2.3.15",
"@playwright/test": "1.58.2",
"playwright": "1.58.2"
},
"workspaces": [
"./packages/*"
]
}