7f59b94dcf
Rebrand repository from "Re:Link" to "Startover" across the codebase. Updates include package names and scopes (@relink/* -> @startover/*), import paths, Next.js transpile settings, vitest name, UI text and docs, Dockerfile and CI/workflow names, deploy scripts and repo paths, and example/production env values. Also add auth-related env vars, an apps/web .env symlink, and small formatting/typing cleanups in several TSX/TS files and tests to accommodate the rename.
33 lines
1011 B
JSON
33 lines
1011 B
JSON
{
|
|
"name": "re-link",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "turbo run build",
|
|
"dev": "turbo run dev",
|
|
"lint": "turbo run lint",
|
|
"test": "turbo run test",
|
|
"type-check": "turbo run type-check",
|
|
"clean": "turbo run clean && rm -rf node_modules",
|
|
"db:generate": "pnpm --filter @startover/database prisma generate",
|
|
"db:push": "pnpm --filter @startover/database prisma db push",
|
|
"db:migrate": "pnpm --filter @startover/database prisma migrate dev",
|
|
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\""
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
|
"@typescript-eslint/parser": "^7.18.0",
|
|
"eslint": "^8.57.1",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-import-resolver-typescript": "^3.7.0",
|
|
"eslint-plugin-import": "^2.31.0",
|
|
"prettier": "^3.4.2",
|
|
"turbo": "^2.3.3",
|
|
"typescript": "^5.7.2",
|
|
"vitest": "^2.1.8"
|
|
},
|
|
"packageManager": "pnpm@8.10.0",
|
|
"engines": {
|
|
"node": ">=20"
|
|
}
|
|
}
|