startit/react_test/my-app/package.json

23 lines
410 B
JSON
Raw Normal View History

2024-09-05 11:25:38 +02:00
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
2024-09-19 14:05:32 +02:00
"next": "^14.2.12",
2024-09-05 11:25:38 +02:00
"react": "^18",
2024-09-19 14:05:32 +02:00
"react-dom": "^18"
2024-09-05 11:25:38 +02:00
},
"devDependencies": {
"eslint": "^8",
2024-09-19 14:05:32 +02:00
"eslint-config-next": "14.2.8",
"postcss": "^8",
"tailwindcss": "^3.4.1"
2024-09-05 11:25:38 +02:00
}
}