WebsiteMinimal/package.json

22 lines
382 B
JSON
Raw Normal View History

2023-10-21 15:51:35 +00:00
{
"name": "website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
2023-10-21 16:15:18 +00:00
"next": "13.5.6",
2023-10-21 15:51:35 +00:00
"react": "^18",
2023-10-21 16:15:18 +00:00
"react-dom": "^18"
2023-10-21 15:51:35 +00:00
},
"devDependencies": {
"eslint": "^8",
2023-10-21 16:15:18 +00:00
"eslint-config-next": "13.5.6",
"sass": "^1.69.4"
2023-10-21 15:51:35 +00:00
}
}