init project

This commit is contained in:
AmirHossein Mahmoodi
2024-01-29 16:14:12 +03:30
commit 1df5a5edb4
15 changed files with 643 additions and 0 deletions

28
package.json Normal file
View File

@@ -0,0 +1,28 @@
{
"name": "rms",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.6",
"@mui/material": "^5.15.6",
"@mui/material-nextjs": "^5.15.6",
"next": "14.1.0",
"react": "^18",
"react-dom": "^18",
"stylis": "^4.3.1",
"stylis-plugin-rtl": "^2.1.1"
},
"devDependencies": {
"eslint": "^8",
"eslint-config-next": "14.1.0"
}
}