Some checks failed
CI / skip-ci-check (push) Successful in 1m26s
CI / lint-and-type-check (push) Successful in 2m2s
CI / python-lint (push) Failing after 1m26s
CI / test-backend (push) Failing after 1m27s
CI / build (push) Failing after 1m34s
CI / secret-scanning (push) Successful in 1m39s
CI / dependency-scan (push) Successful in 1m32s
CI / sast-scan (push) Successful in 2m49s
CI / skip-ci-check (pull_request) Successful in 1m25s
CI / workflow-summary (push) Successful in 1m24s
CI / lint-and-type-check (pull_request) Successful in 2m2s
CI / python-lint (pull_request) Failing after 1m24s
CI / test-backend (pull_request) Failing after 1m25s
CI / build (pull_request) Failing after 1m34s
CI / secret-scanning (pull_request) Successful in 1m39s
CI / dependency-scan (pull_request) Successful in 1m32s
CI / sast-scan (pull_request) Successful in 2m47s
CI / workflow-summary (pull_request) Successful in 1m25s
This commit modifies the ESLint configuration to include an additional TypeScript project file and adjusts the maximum line length to 120 characters. It also removes unused functions and imports across various components in the admin frontend, enhancing code clarity and maintainability. These changes contribute to a cleaner codebase and improved development experience.
65 lines
2.1 KiB
JSON
65 lines
2.1 KiB
JSON
{
|
|
"name": "punimtag-viewer",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "./scripts/with-sharp-libpath.sh next dev -p 3001",
|
|
"build": "./scripts/with-sharp-libpath.sh next build",
|
|
"start": "./scripts/with-sharp-libpath.sh next start",
|
|
"lint": "next lint",
|
|
"type-check": "tsc --noEmit",
|
|
"prisma:generate": "prisma generate",
|
|
"prisma:generate:auth": "prisma generate --schema=prisma/schema-auth.prisma",
|
|
"prisma:generate:all": "prisma generate && prisma generate --schema=prisma/schema-auth.prisma",
|
|
"check:permissions": "tsx scripts/check-database-permissions.ts",
|
|
"setup:databases": "./scripts/check-and-create-databases.sh",
|
|
"install:deps": "./scripts/install-dependencies.sh",
|
|
"setup": "./run-setup.sh"
|
|
},
|
|
"dependencies": {
|
|
"@prisma/client": "^6.19.0",
|
|
"@radix-ui/react-checkbox": "^1.3.3",
|
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
"@radix-ui/react-popover": "^1.1.15",
|
|
"@radix-ui/react-select": "^2.2.6",
|
|
"@radix-ui/react-slot": "^1.2.4",
|
|
"@radix-ui/react-tooltip": "^1.2.8",
|
|
"@tanstack/react-query": "^5.90.9",
|
|
"@types/bcryptjs": "^2.4.6",
|
|
"@types/jszip": "^3.4.0",
|
|
"bcryptjs": "^3.0.3",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"date-fns": "^4.1.0",
|
|
"framer-motion": "^12.23.24",
|
|
"jszip": "^3.10.1",
|
|
"lucide-react": "^0.553.0",
|
|
"next": "^16.1.1",
|
|
"next-auth": "^5.0.0-beta.30",
|
|
"prisma": "^6.19.0",
|
|
"react": "19.2.0",
|
|
"react-day-picker": "^9.11.1",
|
|
"react-dom": "19.2.0",
|
|
"react-photo-album": "^3.2.1",
|
|
"resend": "^6.5.2",
|
|
"sharp": "^0.34.5",
|
|
"tailwind-merge": "^3.4.0",
|
|
"yet-another-react-lightbox": "^3.25.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/postcss": "^4",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"dotenv": "^17.2.3",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "16.0.3",
|
|
"node-addon-api": "^8.5.0",
|
|
"node-gyp": "^12.1.0",
|
|
"tailwindcss": "^4",
|
|
"tsx": "^4.20.6",
|
|
"tw-animate-css": "^1.4.0",
|
|
"typescript": "^5"
|
|
}
|
|
}
|