Files
turbostarter/packages/i18n/package.json
Alejandro Gutiérrez 3527e732d4 feat: turbostarter boilerplate
Production-ready Next.js boilerplate with:
- Runtime env validation (fail-fast on missing vars)
- Feature-gated config (S3, Stripe, email, OAuth)
- Docker + Coolify deployment pipeline
- PostgreSQL + pgvector, MinIO S3, Better Auth
- TypeScript strict mode (no ignoreBuildErrors)
- i18n (en/es), AI modules, billing, monitoring

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-04 01:01:55 +01:00

37 lines
1.0 KiB
JSON

{
"name": "@turbostarter/i18n",
"version": "0.1.0",
"private": true,
"type": "module",
"exports": {
".": "./src/index.ts",
"./server": "./src/server/index.ts",
"./with-i18n": "./src/server/with-i18n.tsx",
"./env": "./src/env.ts"
},
"scripts": {
"clean": "git clean -xdf .cache .turbo dist node_modules",
"format": "prettier --check . --ignore-path ../../.gitignore",
"lint": "eslint",
"typecheck": "tsc --noEmit"
},
"prettier": "@turbostarter/prettier-config",
"dependencies": {
"@turbostarter/shared": "workspace:*",
"i18next": "25.6.0",
"i18next-browser-languagedetector": "8.2.0",
"i18next-resources-to-backend": "1.2.1",
"negotiator": "1.0.0",
"react-i18next": "16.2.3"
},
"devDependencies": {
"@turbostarter/eslint-config": "workspace:*",
"@turbostarter/prettier-config": "workspace:*",
"@turbostarter/tsconfig": "workspace:*",
"@types/negotiator": "0.6.4",
"eslint": "catalog:",
"prettier": "catalog:",
"typescript": "catalog:"
}
}