MangoShelf/package.json

20 lines
416 B
JSON
Raw Normal View History

2022-09-07 08:39:24 +02:00
{
2022-10-22 19:58:36 +02:00
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
2022-09-16 21:57:13 +02:00
"dependencies": {
2022-09-20 12:19:01 +02:00
"express": "^4.18.1",
2022-10-22 19:58:36 +02:00
"mysql": "^2.18.1",
"next": "^12.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"eslint": "8.26.0",
"eslint-config-next": "12.3.1"
2022-09-16 21:57:13 +02:00
}
2022-09-20 12:19:01 +02:00
}