Bumps the npm_and_yarn group with 2 updates in the / directory: [axios](https://github.com/axios/axios) and [next](https://github.com/vercel/next.js). Updates `axios` from 1.7.2 to 1.7.4 - [Release notes](https://github.com/axios/axios/releases) - [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md) - [Commits](https://github.com/axios/axios/compare/v1.7.2...v1.7.4) Updates `next` from 14.2.4 to 14.2.15 - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v14.2.4...v14.2.15) --- updated-dependencies: - dependency-name: axios dependency-type: direct:production dependency-group: npm_and_yarn - dependency-name: next dependency-type: direct:production dependency-group: npm_and_yarn ... Signed-off-by: dependabot[bot] <support@github.com>
65 lines
1.7 KiB
JSON
65 lines
1.7 KiB
JSON
{
|
|
"name": "water-utility-portal",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "prisma generate && next build",
|
|
"start": "next start",
|
|
"lint": "next lint",
|
|
"format": "prettier --config .prettierrc 'app/' --write",
|
|
"typecheck": "tsc --noEmit",
|
|
"prepare": "husky install",
|
|
"prisma:migrate": "npx prisma migrate dev",
|
|
"prisma:generate": "npx prisma generate",
|
|
"prisma:reset": "npx prisma db push --force-reset"
|
|
},
|
|
"dependencies": {
|
|
"@auth0/nextjs-auth0": "^3.5.0",
|
|
"@hookform/resolvers": "^3.6.0",
|
|
"@prisma/client": "^5.6.0",
|
|
"@radix-ui/react-slot": "^1.1.0",
|
|
"@vercel/analytics": "^1.1.1",
|
|
"axios": "^1.7.4",
|
|
"clsx": "^2.1.1",
|
|
"next": "^14.2.15",
|
|
"postcss-nesting": "^12.0.2",
|
|
"react": "^18",
|
|
"react-dom": "^18",
|
|
"react-hook-form": "^7.52.0",
|
|
"resend": "^3.1.0",
|
|
"tailwind-merge": "^2.3.0",
|
|
"zod": "^3.23.8"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^18.4.3",
|
|
"@commitlint/config-conventional": "^18.4.3",
|
|
"@types/node": "^20",
|
|
"@types/react": "^18",
|
|
"@types/react-dom": "^18",
|
|
"@typescript-eslint/eslint-plugin": "^6.12.0",
|
|
"@typescript-eslint/parser": "^6.12.0",
|
|
"audit-ci": "^6.6.1",
|
|
"autoprefixer": "^10.0.1",
|
|
"eslint": "^8",
|
|
"eslint-config-next": "14.0.3",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"husky": "^8.0.3",
|
|
"lint-staged": "^15.1.0",
|
|
"postcss": "^8",
|
|
"prettier": "^3.1.0",
|
|
"prettier-plugin-tailwindcss": "^0.5.7",
|
|
"prisma": "^5.6.0",
|
|
"tailwindcss": "^3.4.1",
|
|
"typescript": "^5"
|
|
},
|
|
"lint-staged": {
|
|
"*.{ts,tsx}": [
|
|
"eslint --quiet --fix"
|
|
],
|
|
"*.{json,ts,tsx}": [
|
|
"prettier --write --ignore-unknown"
|
|
]
|
|
}
|
|
}
|