Files
pawol.nu/package.json
T
2024-04-17 21:20:40 +04:00

99 lines
2.3 KiB
JSON

{
"name": "oki-front",
"version": "0.1.0",
"private": false,
"license": "MIT",
"scripts": {
"lint": "xo",
"dev": "next dev -p 3001",
"build": "next build",
"start": "next start -p 3001"
},
"dependencies": {
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.1",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.5",
"@icons-pack/react-simple-icons": "^3.13.0",
"@mui/icons-material": "^5.15.1",
"@mui/lab": "^5.0.0-alpha.89",
"@mui/material": "^5.15.1",
"@mui/styles": "^5.8.7",
"@svgr/webpack": "^6.5.0",
"axios": "^0.21.0",
"compression": "^1.7.4",
"date-fns": "^2.16.1",
"dotenv": "^16.0.0",
"express": "^4.17.1",
"file-saver": "^2.0.5",
"lodash": "^4.17.21",
"next": "^14.2.1",
"next-auth": "^4.22.1",
"next-plausible": "^3.6.3",
"next-pwa": "5.6.0",
"nextjs-toploader": "^1.4.2",
"nodemailer": "^6.7.2",
"nprogress": "^0.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-swipeable-views": "^0.13.9",
"react-virtuoso": "^4.4.0",
"sharp": "^0.29.3",
"slugify": "^1.6.6"
},
"devDependencies": {
"eslint": "^8.7.0",
"eslint-config-xo-nextjs": "^4.0.3",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"xo": "^0.47.0"
},
"xo": {
"extends": "xo-nextjs",
"semicolon": false,
"space": 2,
"envs": [
"browser",
"es2020"
],
"rules": {
"react/no-danger": "off",
"react/require-default-props": "off",
"react/react-in-jsx-scope": "off",
"camelcase": "off",
"react/boolean-prop-naming": "off",
"comma-dangle": "off",
"new-cap": [
"error",
{
"capIsNewExceptions": [
"CredentialsProvider",
"TwitterProvider",
"GoogleProvider",
"GitHubProvider",
"NextAuth"
]
}
],
"import/extensions": [
"error",
"never",
{
"png": "always",
"jpg": "always",
"js": "always",
"css": "always"
}
],
"node/prefer-global/process": "off",
"func-names": "off",
"unicorn/prevent-abbreviations": "off"
}
},
"engines": {
"node": "^16.13.0 || ^18.12.0",
"npm": ">=6.0.0"
}
}