Files
myeasycms-v2/apps/dev-tool/package.json
Giancarlo Buomprisco 5d0260c8fc Dependencies Update (#318)
* chore(dependencies): update package versions for improved compatibility

- Bumped `@ai-sdk/openai` from `1.3.23` to `2.0.11` for enhanced functionality.
- Updated `@tanstack/react-query` from `5.84.1` to `5.85.0` to incorporate the latest improvements.
- Incremented `ai` from `4.3.19` to `5.0.11` for better performance.
- Updated `lucide-react` from `0.536.0` to `0.539.0` for improved compatibility.
- Incremented `next` from `15.4.5` to `15.4.6` to leverage new features and fixes.
- Updated `@marsidev/react-turnstile` from `1.2.0` to `1.3.0` for enhanced functionality.
- Updated `@nosecone/next` from `1.0.0-beta.9` to `1.0.0-beta.10` for better integration.
- Updated `@supabase/supabase-js` from `2.53.0` to `2.55.0` for improved performance.
- Incremented `@markdoc/markdoc` from `0.5.3` to `0.5.4` for better integration.
- Updated `@next/bundle-analyzer` from `15.4.5` to `15.4.6` for enhanced compatibility.
- Updated `@types/node` from `24.2.0` to `24.2.1` for type safety improvements.
- Updated `@types/react` from `19.1.9` to `19.1.9` for consistency across packages.

* fix(logger): update import statement for pino to default import

- Changed the import of `pino` from named import to default import for consistency with the library's usage and to avoid potential issues with module resolution.
2025-08-13 02:10:16 +08:00

48 lines
1.3 KiB
JSON

{
"name": "dev-tool",
"version": "0.1.0",
"private": true,
"scripts": {
"clean": "git clean -xdf .next .turbo node_modules",
"dev": "next dev --turbo --port=3010 | pino-pretty -c",
"format": "prettier --check --write \"**/*.{js,cjs,mjs,ts,tsx,md,json}\""
},
"dependencies": {
"@ai-sdk/openai": "^2.0.11",
"@hookform/resolvers": "^5.2.1",
"@tanstack/react-query": "5.85.0",
"ai": "5.0.11",
"lucide-react": "^0.539.0",
"next": "15.4.6",
"nodemailer": "^7.0.5",
"react": "19.1.1",
"react-dom": "19.1.1",
"rxjs": "^7.8.2"
},
"devDependencies": {
"@kit/email-templates": "workspace:*",
"@kit/prettier-config": "workspace:*",
"@kit/shared": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@kit/ui": "workspace:*",
"@tailwindcss/postcss": "^4.1.11",
"@types/node": "^24.1.0",
"@types/nodemailer": "6.4.17",
"@types/react": "19.1.9",
"@types/react-dom": "19.1.7",
"babel-plugin-react-compiler": "19.1.0-rc.2",
"pino-pretty": "^13.0.0",
"react-hook-form": "^7.62.0",
"tailwindcss": "4.1.11",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.9.2",
"zod": "^3.25.74"
},
"prettier": "@kit/prettier-config",
"browserslist": [
"last 1 versions",
"> 0.7%",
"not dead"
]
}