Files
support_frontend/package.json
T

49 lines
1.2 KiB
JSON
Raw Normal View History

2026-08-20 16:08:29 +05:30
{
"name": "supporthub-web",
"version": "0.1.0",
"private": true,
2026-08-21 05:04:17 +00:00
"engines": {
"node": ">=22 <23"
},
2026-08-20 16:08:29 +05:30
"scripts": {
"dev": "next dev -p 3000",
"build": "next build",
"build:dev": "npx dotenv-cli -o -e .env.development -- next build",
"build:test": "npx dotenv-cli -o -e .env.test -- next build",
"build:prod": "npx dotenv-cli -o -e .env.production -- next build",
"start": "next start -p 3000",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test"
},
2026-08-21 05:04:17 +00:00
2026-08-20 16:08:29 +05:30
"dependencies": {
"next": "^14.2.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"@tanstack/react-query": "^5.51.15",
"clsx": "^2.1.1",
"tailwind-merge": "^2.4.0",
"lucide-react": "^0.417.0",
"axios": "^1.7.2"
},
2026-08-21 05:04:17 +00:00
2026-08-20 16:08:29 +05:30
"devDependencies": {
"@types/node": "^20.14.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"dotenv-cli": "^7.4.2",
"typescript": "^5.5.4",
"tailwindcss": "^3.4.7",
"postcss": "^8.4.40",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.5",
"vitest": "^2.0.4",
"@playwright/test": "^1.45.3"
}
2026-08-21 05:04:17 +00:00
}