integration/next-ts/package.json
{
"name": "next-ts",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:integration": "eslint pages --max-warnings=0 --format=tap > results.txt"
},
"dependencies": {
"next": "13.1.1",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@types/react": "18.0.9",
"eslint": ">=8.27.0",
"typescript": "4.9.4"
}
}