mirror of
https://github.com/johndoe6345789/tsmorph.git
synced 2026-04-24 13:54:58 +00:00
27 lines
663 B
JSON
27 lines
663 B
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",
|
|
"type-check": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"next": "^14.0.0"
|
|
},
|
|
"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"
|
|
}
|
|
}
|