Files
telenetsystems-2026-02-06-v1/package.json
1elle1 5c3860b631 chore: update TypeScript configuration and add Tailwind CSS support
- Updated `next-env.d.ts` to remove unnecessary import and update TypeScript documentation link.
- Added `@tailwindcss/postcss` dependency in `package.json` and `package-lock.json`.
- Created `globals.css` with Tailwind CSS directives and custom theme variables.
- Modified `tsconfig.json` to change JSX setting from `react-jsx` to `preserve`.
2026-02-06 14:05:17 +01:00

29 lines
640 B
JSON

{
"name": "telenetsystems-website",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@tailwindcss/postcss": "^4.1.18",
"next": "^14.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"autoprefixer": "^10.4.17",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.0",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3"
}
}