Files
myeasycms-v2/apps/dev-tool/package.json
Giancarlo Buomprisco ca585e09be 2.24.1 (#453)
* 2.24.1

- Updated dependencies
- MCP Server: better compatibility with Windows
- MCP Server: allow using a custom root for better flexibility
- Version Check: use package.json version instead of number of commits
- Prettier: reformatted some files
- Add SSH_AUTH_SOCK to dev passThroughEnv to solve SSH issues; handle execSync errors
- Use GIT_SSH to fix SSH issues on Windows
- Updated Stripe version
- Updated application version from 2.24.0 to 2.24.1 in package.json.
- Enhanced error handling in billing services to include error causes for better debugging.
2026-02-26 18:22:35 +08:00

51 lines
1.4 KiB
JSON

{
"name": "dev-tool",
"version": "0.1.0",
"private": true,
"scripts": {
"clean": "git clean -xdf .next .turbo node_modules",
"dev": "next dev --port=3010 | pino-pretty -c",
"format": "prettier --check --write \"**/*.{ts,tsx}\" --ignore-path=\"../../.prettierignore\""
},
"dependencies": {
"@faker-js/faker": "^10.2.0",
"@hookform/resolvers": "^5.2.2",
"@tanstack/react-query": "catalog:",
"lucide-react": "catalog:",
"next": "catalog:",
"nodemailer": "catalog:",
"react": "catalog:",
"react-dom": "catalog:",
"rxjs": "^7.8.2"
},
"devDependencies": {
"@kit/email-templates": "workspace:*",
"@kit/i18n": "workspace:*",
"@kit/mcp-server": "workspace:*",
"@kit/next": "workspace:*",
"@kit/prettier-config": "workspace:*",
"@kit/shared": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@kit/ui": "workspace:*",
"@tailwindcss/postcss": "^4.2.1",
"@types/node": "catalog:",
"@types/nodemailer": "catalog:",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"babel-plugin-react-compiler": "1.0.0",
"pino-pretty": "13.0.0",
"react-hook-form": "catalog:",
"recharts": "2.15.3",
"tailwindcss": "catalog:",
"tw-animate-css": "catalog:",
"typescript": "^5.9.3",
"zod": "catalog:"
},
"prettier": "@kit/prettier-config",
"browserslist": [
"last 1 versions",
"> 0.7%",
"not dead"
]
}