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-05-21 19:31:22 +04:00
|
|
|
"@emotion/react": "^11.9.0",
|
2022-01-22 18:09:41 +04:00
|
|
|
"@emotion/server": "^11.4.0",
|
2022-05-21 19:31:22 +04:00
|
|
|
"@emotion/styled": "^11.8.1",
|
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-07-07 19:41:49 +04:00
|
|
|
"@mui/icons-material": "^5.8.4",
|
|
|
|
|
"@mui/lab": "^5.0.0-alpha.89",
|
|
|
|
|
"@mui/material": "^5.8.7",
|
|
|
|
|
"@mui/styles": "^5.8.7",
|
2022-02-16 21:52:57 +04:00
|
|
|
"@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",
|
2022-02-16 21:52:57 +04:00
|
|
|
"dotenv": "^16.0.0",
|
2020-12-11 01:34:49 +01:00
|
|
|
"express": "^4.17.1",
|
2020-12-19 22:50:44 +01:00
|
|
|
"lodash.deburr": "^4.1.0",
|
2022-02-16 21:52:57 +04:00
|
|
|
"lodash.pick": "^4.4.0",
|
2022-02-19 21:42:38 +04:00
|
|
|
"lodash.template": "^4.5.0",
|
2020-12-15 08:19:43 +01:00
|
|
|
"lodash.union": "^4.6.0",
|
2021-05-27 23:52:16 +02:00
|
|
|
"lodash.uniq": "^4.5.0",
|
2021-06-10 19:23:42 +02:00
|
|
|
"mongodb": "^3.6.9",
|
2022-05-21 19:31:22 +04:00
|
|
|
"next": "^12.1.6",
|
2022-02-03 01:27:22 +04:00
|
|
|
"next-auth": "^4.1.2",
|
2022-01-09 21:17:00 +04:00
|
|
|
"next-pwa": "^5.4.4",
|
2022-02-19 21:42:38 +04:00
|
|
|
"nodemailer": "^6.7.2",
|
2022-01-22 21:52:44 +04:00
|
|
|
"nprogress": "^0.2.0",
|
2021-06-22 02:05:10 +02:00
|
|
|
"react": "^17.0.2",
|
|
|
|
|
"react-dom": "^17.0.2",
|
2022-01-17 22:28:31 +04:00
|
|
|
"react-swipeable-views": "^0.13.9",
|
2022-02-16 21:52:57 +04:00
|
|
|
"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
|
|
|
}
|
|
|
|
|
}
|