mirror of
https://github.com/johndoe6345789/tsmorph.git
synced 2026-04-24 13:54:58 +00:00
Bumps the npm_and_yarn group with 1 update in the / directory: [next](https://github.com/vercel/next.js). Updates `next` from 14.2.35 to 15.5.10 - [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.35...v15.5.10) --- updated-dependencies: - dependency-name: next dependency-version: 15.5.10 dependency-type: direct:production dependency-group: npm_and_yarn ... Signed-off-by: dependabot[bot] <support@github.com>
37 lines
1.1 KiB
JSON
37 lines
1.1 KiB
JSON
{
|
|
"name": "tsmorph",
|
|
"version": "1.0.0",
|
|
"description": "TSX refactoring demonstration - Extract code blocks >150 LOC",
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
"lint:fix": "eslint . --ext .ts,.tsx --fix",
|
|
"format": "prettier --write \"**/*.{ts,tsx,json,md}\"",
|
|
"type-check": "tsc --noEmit",
|
|
"refactor": "ts-node scripts/refactor-tsx.ts",
|
|
"refactor:pass2": "ts-node scripts/refactor-tsx-pass2.ts",
|
|
"fix-lint": "ts-node scripts/fix-lint.ts",
|
|
"analyze-types": "ts-node scripts/analyze-types.ts"
|
|
},
|
|
"dependencies": {
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"next": "^15.5.10"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.2.0",
|
|
"@types/react-dom": "^18.2.0",
|
|
"@types/node": "^20.0.0",
|
|
"typescript": "^5.0.0",
|
|
"eslint": "^8.0.0",
|
|
"@typescript-eslint/parser": "^6.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
"ts-morph": "^21.0.0",
|
|
"ts-node": "^10.9.0",
|
|
"prettier": "^3.0.0",
|
|
"eslint-config-prettier": "^9.0.0"
|
|
}
|
|
}
|