2026-02-01 22:25:28 +05:30
|
|
|
{
|
|
|
|
|
"name": "frontend",
|
|
|
|
|
"version": "0.1.0",
|
|
|
|
|
"private": true,
|
|
|
|
|
"scripts": {
|
|
|
|
|
"dev": "next dev",
|
|
|
|
|
"build": "next build",
|
|
|
|
|
"start": "next start",
|
2026-02-01 22:31:42 +05:30
|
|
|
"lint": "eslint",
|
2026-02-07 09:37:08 +00:00
|
|
|
"test": "vitest run --passWithNoTests --coverage",
|
|
|
|
|
"test:watch": "vitest",
|
2026-02-01 23:26:21 +05:30
|
|
|
"dev:lan": "next dev --hostname 0.0.0.0 --port 3000",
|
2026-02-07 16:01:13 +00:00
|
|
|
"api:gen": "orval --config ./orval.config.ts",
|
|
|
|
|
"e2e": "cypress run",
|
|
|
|
|
"e2e:open": "cypress open"
|
2026-02-01 22:25:28 +05:30
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2026-02-12 01:19:00 +05:30
|
|
|
"@clerk/nextjs": "^6.37.3",
|
|
|
|
|
"@radix-ui/react-dialog": "^1.1.15",
|
2026-02-04 20:49:25 +05:30
|
|
|
"@radix-ui/react-popover": "^1.1.15",
|
2026-02-04 02:28:51 +05:30
|
|
|
"@radix-ui/react-select": "^2.2.6",
|
2026-02-12 01:19:00 +05:30
|
|
|
"@radix-ui/react-tabs": "^1.1.13",
|
|
|
|
|
"@radix-ui/react-tooltip": "^1.2.8",
|
|
|
|
|
"@tanstack/react-query": "^5.90.21",
|
2026-02-04 02:28:51 +05:30
|
|
|
"@tanstack/react-table": "^8.21.3",
|
2026-02-04 20:21:33 +05:30
|
|
|
"cmdk": "^1.1.1",
|
2026-02-01 22:25:28 +05:30
|
|
|
"next": "16.1.6",
|
2026-02-12 01:19:00 +05:30
|
|
|
"react": "19.2.4",
|
|
|
|
|
"react-dom": "19.2.4",
|
2026-02-05 03:05:14 +05:30
|
|
|
"react-markdown": "^10.1.0",
|
2026-02-06 20:28:52 +05:30
|
|
|
"recharts": "^3.7.0",
|
|
|
|
|
"remark-breaks": "^4.0.0",
|
|
|
|
|
"remark-gfm": "^4.0.1"
|
2026-02-01 22:25:28 +05:30
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-02-08 14:52:03 +00:00
|
|
|
"@clerk/testing": "^1.13.35",
|
2026-02-12 01:19:00 +05:30
|
|
|
"@testing-library/jest-dom": "^6.9.1",
|
|
|
|
|
"@testing-library/react": "^16.3.2",
|
|
|
|
|
"@testing-library/user-event": "^14.6.1",
|
2026-02-01 22:25:28 +05:30
|
|
|
"@types/node": "^20",
|
|
|
|
|
"@types/react": "^19",
|
|
|
|
|
"@types/react-dom": "^19",
|
2026-02-08 15:27:11 +00:00
|
|
|
"@vitest/coverage-v8": "^4.0.18",
|
2026-02-01 23:26:21 +05:30
|
|
|
"autoprefixer": "^10.4.24",
|
|
|
|
|
"class-variance-authority": "^0.7.1",
|
|
|
|
|
"clsx": "^2.1.1",
|
2026-02-12 01:19:00 +05:30
|
|
|
"cypress": "^14.5.4",
|
2026-02-01 22:25:28 +05:30
|
|
|
"eslint": "^9",
|
|
|
|
|
"eslint-config-next": "16.1.6",
|
2026-02-07 09:37:08 +00:00
|
|
|
"jsdom": "^25.0.1",
|
2026-02-01 23:26:21 +05:30
|
|
|
"lucide-react": "^0.563.0",
|
2026-02-12 01:19:00 +05:30
|
|
|
"orval": "^8.3.0",
|
2026-02-01 23:26:21 +05:30
|
|
|
"postcss": "^8.5.6",
|
|
|
|
|
"prettier": "^3.8.1",
|
|
|
|
|
"tailwind-merge": "^3.4.0",
|
2026-02-12 01:19:00 +05:30
|
|
|
"tailwindcss": "^3.4.19",
|
2026-02-01 23:26:21 +05:30
|
|
|
"tailwindcss-animate": "^1.0.7",
|
2026-02-07 09:37:08 +00:00
|
|
|
"typescript": "^5",
|
2026-02-08 15:27:11 +00:00
|
|
|
"vitest": "^4.0.18"
|
2026-02-01 22:25:28 +05:30
|
|
|
}
|
|
|
|
|
}
|