react-typescript-test/package.json

27 lines
539 B
JSON
Raw Normal View History

2024-09-03 19:08:37 +02:00
{
"name": "react-typescript-test",
"version": "0.1.0",
"private": true,
"scripts": {
2024-09-04 20:18:21 +02:00
"dev": "next dev -p 3001",
2024-09-03 19:08:37 +02:00
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"react": "^18",
"react-dom": "^18",
"next": "14.2.7"
},
"devDependencies": {
"typescript": "^5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"eslint": "^8",
"eslint-config-next": "14.2.7"
}
}