Files
pawol.nu/package.json
T

97 lines
2.3 KiB
JSON
Raw Normal View History

2020-12-04 20:16:24 +01:00
{
"name": "oki-front",
"version": "0.1.0",
"private": true,
"scripts": {
"lint": "xo",
2020-12-11 01:35:18 +01:00
"dev": "node server",
2020-12-04 20:16:24 +01:00
"build": "next build",
2022-01-28 10:29:10 +04:00
"start": "NODE_ENV=production node server -p 3001"
2020-12-04 20:16:24 +01:00
},
"dependencies": {
2022-01-22 18:09:41 +04:00
"@emotion/cache": "^11.7.1",
2022-09-05 21:01:19 +04:00
"@emotion/react": "^11.10.4",
2022-01-22 18:09:41 +04:00
"@emotion/server": "^11.4.0",
2022-09-05 21:01:19 +04:00
"@emotion/styled": "^11.10.4",
2022-01-22 16:44:22 +04:00
"@fontsource/roboto": "^4.5.1",
2020-12-15 08:49:26 +01:00
"@icons-pack/react-simple-icons": "^3.13.0",
2020-12-04 20:16:24 +01:00
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
2020-12-11 01:30:56 +01:00
"@material-ui/lab": "^4.0.0-alpha.57",
2022-09-05 21:01:19 +04:00
"@mui/icons-material": "^5.10.3",
2022-07-07 19:41:49 +04:00
"@mui/lab": "^5.0.0-alpha.89",
2022-10-17 20:56:11 +04:00
"@mui/material": "^5.10.9",
2022-07-07 19:41:49 +04:00
"@mui/styles": "^5.8.7",
"@stripe/react-stripe-js": "^1.7.0",
"@stripe/stripe-js": "^1.22.0",
2020-12-09 02:42:48 +01:00
"axios": "^0.21.0",
2020-12-11 01:34:49 +01:00
"compression": "^1.7.4",
2020-12-17 09:03:36 +01:00
"date-fns": "^2.16.1",
"dotenv": "^16.0.0",
2020-12-11 01:34:49 +01:00
"express": "^4.17.1",
2022-09-05 21:33:18 +04:00
"lodash": "^4.17.21",
2021-06-10 19:23:42 +02:00
"mongodb": "^3.6.9",
2022-09-05 20:49:05 +04:00
"next": "^12.2.5",
2022-10-23 05:16:19 +04:00
"next-auth": "^4.14.0",
2022-10-23 05:22:41 +04:00
"next-pwa": "^5.6.0",
"nodemailer": "^6.7.2",
2022-01-22 21:52:44 +04:00
"nprogress": "^0.2.0",
2022-09-05 20:49:05 +04:00
"react": "^18.2.0",
"react-dom": "^18.2.0",
2022-01-17 22:28:31 +04:00
"react-swipeable-views": "^0.13.9",
"sharp": "^0.29.3",
"stripe": "^8.202.0"
2020-12-04 20:16:24 +01:00
},
"devDependencies": {
2022-01-18 08:49:56 +04:00
"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"
2020-12-04 20:16:24 +01:00
},
"xo": {
"extends": "xo-nextjs",
"semicolon": false,
"space": 2,
"envs": [
"browser",
"es2020"
],
"rules": {
2021-05-27 03:27:50 +02:00
"react/no-danger": "off",
2020-12-04 20:16:24 +01:00
"react/require-default-props": "warn",
2020-12-17 09:04:28 +01:00
"react/react-in-jsx-scope": "off",
2020-12-18 21:54:15 +01:00
"camelcase": "off",
2021-05-22 23:37:44 +02:00
"react/boolean-prop-naming": "off",
2021-09-21 20:53:29 +02:00
"comma-dangle": "off",
2021-05-22 23:37:44 +02:00
"new-cap": [
2021-05-27 23:52:16 +02:00
"error",
{
"capIsNewExceptions": [
2022-02-03 01:58:29 +04:00
"CredentialsProvider",
2021-06-10 19:22:46 +02:00
"Google",
2021-05-27 23:52:16 +02:00
"NextAuth"
]
2021-05-22 23:37:44 +02:00
}
2021-07-22 21:19:03 +02:00
],
"import/extensions": [
"error",
"never",
2021-09-21 21:27:10 +02:00
{
"png": "always",
"jpg": "always",
2022-02-09 22:18:02 +04:00
"js": "always",
"css": "always"
2021-09-21 21:27:10 +02:00
}
],
2022-01-22 18:09:20 +04:00
"node/prefer-global/process": "off",
2022-02-19 21:46:08 +04:00
"func-names": "off",
"unicorn/prevent-abbreviations": "off"
2020-12-04 20:16:24 +01:00
}
2022-09-03 12:09:32 +04:00
},
"engines": {
"node": ">=14.19.1 <=16.x.x",
"npm": ">=6.0.0"
2020-12-04 20:16:24 +01:00
}
}