Files
hadlock.tech/package.json
T
soconnor d0ffd7dc04 Add theme system, project banners, mobile nav, and hero logo
- System-first theming via light-dark() with explicit .light/.dark overrides
- Project banners: Racetix, beenvoice, RaceHub, HRIStudio
- Mobile navigation with portaled blur backdrop
- Hero logo placement and page copy polish
- Remove tRPC, migrate contact flow to direct API route
2026-08-02 02:40:27 -04:00

47 lines
1.2 KiB
JSON

{
"name": "hadlock.tech",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "next build",
"check": "eslint . && tsc --noEmit",
"dev": "next dev --turbo",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"format:write": "prettier --write \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "next build && next start",
"start": "next start",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@t3-oss/env-nextjs": "^0.12.0",
"next": "^16.2.10",
"nodemailer": "^9.0.3",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"server-only": "^0.0.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@tailwindcss/postcss": "^4.0.15",
"@types/node": "^20.14.10",
"@types/nodemailer": "^8.0.1",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"eslint": "^9.23.0",
"eslint-config-next": "^15.2.3",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^4.0.15",
"typescript": "^5.8.2",
"typescript-eslint": "^8.27.0"
},
"ct3aMetadata": {
"initVersion": "7.40.0"
}
}