62 lines
2.4 KiB
JSON
62 lines
2.4 KiB
JSON
{
|
|
"name": "ben-to",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "Bento builder web + mobile",
|
|
"workspaces": [
|
|
"apps/*",
|
|
"packages/*",
|
|
"packages/features/*",
|
|
"packages/shared/*"
|
|
],
|
|
"scripts": {
|
|
"postinstall": "patch-package",
|
|
"dev:web": "npm run dev -w apps/web",
|
|
"build:web": "npm run build -w apps/web",
|
|
"mobile:sync": "npm run sync -w @ben-to/mobile",
|
|
"mobile:open:android": "npm run open:android -w @ben-to/mobile",
|
|
"mobile:run:android": "npm run run:android -w @ben-to/mobile",
|
|
"test": "vitest run",
|
|
"test:unit": "vitest run --project unit",
|
|
"test:integration": "vitest run --project integration",
|
|
"test:coverage": "vitest run --coverage",
|
|
"test:e2e": "playwright test",
|
|
"tour:capture": "playwright test -c playwright.tour-capture.config.ts",
|
|
"test:ci": "npm run lint && npm run typecheck && npm run test:coverage && npm run test:e2e",
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
"typecheck": "tsc --noEmit -p tsconfig.typecheck.json --pretty false",
|
|
"pipeline:recipes": "node scripts/build-recipes.mjs",
|
|
"audit:recipe-assets": "node scripts/audit-recipe-assets.mjs",
|
|
"audit:deps": "npm audit --audit-level=high",
|
|
"check:feature-first": "node scripts/quality/check-feature-first.mjs",
|
|
"check:gherkin": "node scripts/quality/check-gherkin.mjs",
|
|
"check:gherkin-scenarios": "node scripts/quality/check-gherkin-scenarios.mjs",
|
|
"check:immutability": "node scripts/quality/check-immutability.mjs",
|
|
"check:no-barrel-index": "node scripts/quality/check-no-barrel-index.mjs",
|
|
"check:quality": "npm run check:feature-first && npm run check:gherkin && npm run check:gherkin-scenarios && npm run check:no-barrel-index && npm run check:immutability",
|
|
"audit:lighthouse": "npm run build:web && lhci autorun --config=./lighthouserc.json",
|
|
"prepare": "husky"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^10.0.1",
|
|
"@axe-core/playwright": "^4.12.1",
|
|
"@lhci/cli": "^0.15.1",
|
|
"@playwright/test": "^1.61.1",
|
|
"@types/node": "^26.1.1",
|
|
"@typescript-eslint/eslint-plugin": "^8.63.0",
|
|
"@typescript-eslint/parser": "^8.63.0",
|
|
"@vitest/coverage-v8": "^4.1.10",
|
|
"eslint": "^10.7.0",
|
|
"glob": "^13.0.6",
|
|
"husky": "^9.1.7",
|
|
"lighthouse": "^13.4.0",
|
|
"patch-package": "^8.0.1",
|
|
"typescript": "^6.0.3",
|
|
"vitest": "^4.1.5"
|
|
},
|
|
"overrides": {
|
|
"tmp": ">=0.2.4",
|
|
"uuid": ">=14.0.0"
|
|
}
|
|
}
|