-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.37 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
{
"name": "tabelo",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"type": "module",
"scripts": {
"dev": "pnpm -r dev",
"build": "pnpm -r build",
"check-types": "pnpm -r check-types",
"test": "pnpm -r test",
"test:watch": "pnpm --filter web run test:watch",
"test:e2e": "pnpm --filter web run test:e2e --project=chromium",
"test:e2e:all": "pnpm --filter web run test:e2e",
"test:e2e:failed": "pnpm --filter web run test:e2e --project=chromium --last-failed",
"test:e2e:changed": "pnpm --filter web run test:e2e --project=chromium --only-changed",
"test:e2e:ui": "pnpm --filter web run test:e2e --ui",
"test:e2e:serve": "pnpm --filter web run build && pnpm --filter web run serve --host 127.0.0.1",
"test:e2e:install": "pnpm --filter web exec playwright install chromium firefox",
"dev:web": "pnpm --filter web dev",
"check": "biome check --write .",
"check:dead-code": "knip",
"lint": "biome check .",
"prepare": "husky",
"postinstall": "node apps/web/write-launch-config.js"
},
"devDependencies": {
"@biomejs/biome": "^2.5.2",
"@tabelo/config": "workspace:*",
"@types/node": "catalog:",
"husky": "^9.1.7",
"knip": "^6.32.0",
"lint-staged": "^17.0.7",
"typescript": "catalog:"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --write ."
]
},
"packageManager": "pnpm@11.7.0"
}