-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 3.73 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 3.73 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
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "rss-wrangler",
"private": true,
"version": "0.1.0",
"license": "AGPL-3.0-only",
"workspaces": [
"apps/*",
"packages/*",
"tests/e2e"
],
"scripts": {
"dev:web": "npm run build -w @rss-wrangler/contracts && npm run dev -w @rss-wrangler/web",
"dev:api": "npm run build -w @rss-wrangler/contracts && npm run dev -w @rss-wrangler/api",
"dev:worker": "npm run build -w @rss-wrangler/contracts && npm run dev -w @rss-wrangler/worker",
"build": "npm run build -w @rss-wrangler/contracts && npm run build -w @rss-wrangler/api && npm run build -w @rss-wrangler/worker && npm run build -w @rss-wrangler/web",
"typecheck": "npm run build -w @rss-wrangler/contracts && npm run typecheck -w @rss-wrangler/contracts && npm run typecheck -w @rss-wrangler/api && npm run typecheck -w @rss-wrangler/worker && npm run typecheck -w @rss-wrangler/web",
"lint": "biome lint . --files-ignore-unknown=true --no-errors-on-unmatched --only=lint/correctness --only=lint/suspicious --skip=lint/suspicious/noConsole --skip=lint/suspicious/noReactSpecificProps --skip=lint/suspicious/useAwait --skip=lint/suspicious/noBitwiseOperators --skip=lint/suspicious/noAssignInExpressions --skip=lint/suspicious/noExplicitAny --skip=lint/correctness/noNodejsModules --skip=lint/correctness/useImportExtensions --skip=lint/correctness/noProcessGlobal --skip=lint/correctness/noUndeclaredDependencies --skip=lint/correctness/useUniqueElementIds",
"lint:fix": "biome lint . --write --files-ignore-unknown=true --no-errors-on-unmatched --only=lint/correctness --only=lint/suspicious --skip=lint/suspicious/noConsole --skip=lint/suspicious/noReactSpecificProps --skip=lint/suspicious/useAwait --skip=lint/suspicious/noBitwiseOperators --skip=lint/suspicious/noAssignInExpressions --skip=lint/suspicious/noExplicitAny --skip=lint/correctness/noNodejsModules --skip=lint/correctness/useImportExtensions --skip=lint/correctness/noProcessGlobal --skip=lint/correctness/noUndeclaredDependencies --skip=lint/correctness/useUniqueElementIds",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:coverage:baseline": "npm run test:coverage && node scripts/update-coverage-baseline.mjs",
"test:coverage:policy": "npm run test:coverage && node scripts/check-coverage-policy.mjs",
"debt:scan": "knip --include files,exports,duplicates,dependencies --reporter compact --no-exit-code",
"db:migrate": "node scripts/run-migrations.mjs",
"seed:directory": "node scripts/seed-feed-directory.mjs",
"orbstack:up": "docker compose -f infra/docker-compose.yml up --build -d",
"orbstack:down": "docker compose -f infra/docker-compose.yml down",
"orbstack:smoke": "bash scripts/orbstack-smoke.sh",
"selfhost:readiness": "node scripts/load/run-selfhost-readiness.mjs",
"hosted:smoke": "node scripts/load/run-hosted-smoke.mjs",
"hosted:dogfood": "node scripts/load/run-hosted-dogfood-readiness.mjs",
"backfill:enrichment": "tsx scripts/backfill-enrichment.ts",
"push:vapid:keys": "node scripts/generate-vapid-keys.js",
"hooks:install": "lefthook install",
"prepare": "lefthook install",
"test:e2e": "npm run test -w @rss-wrangler/e2e",
"test:e2e:headed": "npm run test:headed -w @rss-wrangler/e2e",
"test:e2e:ui": "npm run test:ui -w @rss-wrangler/e2e"
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@playwright/test": "^1.58.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.2.2",
"@vitest/coverage-v8": "^4.0.18",
"jsdom": "^28.1.0",
"knip": "^5.83.1",
"lefthook": "^2.1.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=22.0.0"
}
}