- 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`.
29 lines
640 B
JSON
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"
|
|
}
|
|
}
|