-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.72 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.72 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "egapro",
"version": "3.13.2",
"private": true,
"workspaces": [
"packages/*"
],
"packageManager": "pnpm@10.8.1",
"engines": {
"node": ">=24"
},
"scripts": {
"lint": "pnpm -r --if-present run lint",
"lint:check": "pnpm -r --if-present run lint:check",
"format": "pnpm -r --if-present run format",
"format:check": "pnpm -r --if-present run format:check",
"build": "pnpm -r --if-present run build",
"dev": "pnpm -r --if-present run dev",
"test": "pnpm -r --if-present run test",
"typecheck": "pnpm -r --if-present run typecheck",
"dev:app": "pnpm --filter app run dev",
"lint:app": "pnpm --filter app run lint",
"lint:check:app": "pnpm --filter app run lint:check",
"format:app": "pnpm --filter app run format",
"format:check:app": "pnpm --filter app run format:check",
"build:app": "pnpm --filter app run build",
"typecheck:app": "pnpm --filter app run typecheck",
"test:app": "pnpm --filter app run test",
"test:app:coverage": "pnpm --filter app run test:coverage",
"db:generate": "pnpm --filter app run db:generate",
"db:migrate": "pnpm --filter app run db:migrate",
"db:push": "pnpm --filter app run db:push",
"db:studio": "pnpm --filter app run db:studio",
"test:e2e": "PLAYWRIGHT_BASE_URL=${SITE_URL:-http://localhost:3000} pnpm --filter app run test:e2e",
"test:rgaa": "PLAYWRIGHT_BASE_URL=${SITE_URL:-http://localhost:3000} pnpm --filter app run test:rgaa",
"playwright:install": "pnpm --filter app exec playwright install --with-deps chromium",
"test:lighthouse": "pnpm --filter app run test:lighthouse",
"release": "semantic-release"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"semantic-release": "^25.0.3"
}
}