Project setup

This commit is contained in:
Darren Clarke 2022-12-02 10:55:56 +00:00
parent 6c45dec07b
commit 95a21d6f50
29 changed files with 12083 additions and 77 deletions

51
package.json Normal file
View file

@ -0,0 +1,51 @@
{
"name": "link-shell",
"version": "0.0.1",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"lint": "next lint"
},
"dependencies": {
"@emotion/cache": "^11.10.5",
"@emotion/react": "^11.10.5",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.5",
"@fontsource/playfair-display": "^4.5.12",
"@fontsource/poppins": "^4.5.10",
"@fontsource/roboto": "^4.5.8",
"@mui/icons-material": "^5",
"@mui/lab": "^5.0.0-alpha.110",
"@mui/material": "^5",
"@mui/x-data-grid-pro": "^5.17.14",
"@mui/x-date-pickers-pro": "^5.0.9",
"date-fns": "^2.29.3",
"http-proxy-middleware": "^2.0.6",
"material-ui-popup-state": "^4.1.0",
"next": "^13.0",
"next-auth": "^4.17.0",
"next-http-proxy-middleware": "^1.2.5",
"react": "^18",
"react-dom": "^18",
"react-iframe": "^1.8.5",
"react-polyglot": "^0.7.2",
"swr": "^1.3.0"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@types/react": "^18",
"@types/uuid": "^9.0.0",
"babel-loader": "^9.1.0",
"eslint": "^8.28.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^13.0.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"typescript": "^4.9.3"
}
}