-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 4.14 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 4.14 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "business-app-starter",
"version": "1.0.0",
"description": "Reusable internal business app starter",
"private": true,
"packageManager": "pnpm@11.1.0",
"scripts": {
"dev": "node scripts/run-next.mjs dev",
"docker": "node scripts/docker-compose.mjs",
"build": "next build",
"cli:dist": "cd cli && goreleaser release --snapshot --clean",
"cli:install-releases": "pwsh -NoProfile -ExecutionPolicy Bypass -File scripts/install-cli-releases.ps1",
"start": "node scripts/run-next.mjs start",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:mutation:critical": "node scripts/run-critical-mutation-tests.mjs",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"architecture": "depcruise --config .dependency-cruiser.cjs --exclude \"^generated/\" src",
"duplication": "node scripts/check-duplication.mjs",
"quality:ts": "pnpm run lint && pnpm run architecture && pnpm run duplication",
"quality:python": "node scripts/check-python-quality.mjs",
"quality:cli": "node scripts/check-cli-quality.mjs",
"check:text": "node scripts/check-text-conventions.mjs",
"logging:guard": "node scripts/check-logging-guard.mjs",
"smoke:azure": "node scripts/run-azure-deploy-smoke.mjs",
"supply-chain:audit": "pwsh -NoProfile -ExecutionPolicy Bypass -File scripts/supply-chain-audit.ps1",
"validate:runtime-credentials": "pwsh -NoProfile -ExecutionPolicy Bypass -File scripts/validate-runtime-credentials.ps1 -SelfTest",
"validate:precommit": "pwsh -NoProfile -ExecutionPolicy Bypass -File validate.ps1 precommit",
"worker:lint": "cd worker && uv run ruff check src tests",
"worker:complexity": "node scripts/check-python-quality.mjs --complexity-only",
"semgrep": "semgrep scan --error --config auto --config .semgrep.yml",
"continuity:update": "node scripts/update-continuity.mjs",
"specs:overview:update": "node scripts/update-spec-overview.mjs",
"specs:overview:check": "node scripts/update-spec-overview.mjs --check",
"validate:prepush": "pwsh -NoProfile -ExecutionPolicy Bypass -File validate.ps1 prepush",
"validate": "pnpm run validate:runtime-credentials && pnpm run typecheck && pnpm run quality:ts && pnpm run quality:python && pnpm run quality:cli && pnpm run logging:guard && pnpm run semgrep && pnpm run test",
"validate:full": "pnpm run validate && pnpm run test:e2e",
"template:stamp": "node scripts/stamp-template-origin.mjs",
"prisma:generate": "prisma generate",
"prisma:generate:postgres": "prisma generate --config prisma.config.postgres.ts",
"prisma:migrate": "prisma migrate dev",
"prisma:migrate:postgres": "prisma migrate deploy --config prisma.config.postgres.ts",
"prisma:seed": "tsx prisma/seed.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/adapter-pg": "^7.7.0",
"@prisma/client": "^7.7.0",
"bcryptjs": "^3.0.3",
"better-auth": "^1.6.22",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.4.2",
"lucide-react": "^1.22.0",
"next": "^16.2.9",
"next-intl": "^4.13.0",
"pg": "^8.22.0",
"radix-ui": "^1.6.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"tailwind-merge": "^3.5.0",
"zod": "^4.3.6"
},
"optionalDependencies": {
"@prisma/adapter-better-sqlite3": "^7.7.0",
"better-sqlite3": "^12.11.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@playwright/test": "^1.61.1",
"@swc/helpers": "^0.5.23",
"@tailwindcss/postcss": "^4.3.2",
"@types/node": "^25.6.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "^4.1.9",
"dependency-cruiser": "^18.0.0",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.9",
"eslint-plugin-sonarjs": "^4.1.0",
"jscpd": "^5.0.11",
"postcss": "^8.5.16",
"prettier": "^3.9.3",
"prisma": "^7.7.0",
"tailwindcss": "^4.3.2",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vitest": "^4.1.9",
"vitest-mock-extended": "^4.0.0"
},
"overrides": {
"@hono/node-server": "^1.19.13"
}
}