-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 920 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 920 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
26
27
28
29
{
"name": "webwoven",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@11.12.0",
"engines": {
"node": ">=24"
},
"scripts": {
"dev": "pnpm --filter @webwoven/web dev",
"build": "pnpm -r build",
"check": "pnpm -r check",
"lint": "pnpm -r lint && pnpm colors:check && pnpm files:check",
"test": "pnpm -r test",
"test:e2e": "playwright test",
"api:openapi": "uv run python scripts/export_openapi.py",
"api:types": "openapi-typescript generated/openapi.json -o apps/web/src/lib/api/generated/schema.ts",
"colors:check": "node scripts/check-design-colors.mjs",
"files:check": "python3 scripts/check_file_size.py"
},
"devDependencies": {
"@playwright/test": "^1.53.0",
"openapi-typescript": "^7.8.0",
"prettier": "^3.5.0",
"prettier-plugin-svelte": "^4.1.1",
"stylelint": "^17.14.0",
"stylelint-config-standard": "^40.0.0"
}
}