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",
|
2020-12-11 01:35:18 +01:00
|
|
|
"start": "NODE_ENV=production node server"
|
2020-12-04 20:16:24 +01:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
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",
|
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",
|
2020-12-11 01:34:49 +01:00
|
|
|
"express": "^4.17.1",
|
2020-12-04 20:16:24 +01:00
|
|
|
"fontsource-roboto": "^3.0.3",
|
2020-12-19 22:50:44 +01:00
|
|
|
"lodash.deburr": "^4.1.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",
|
2020-12-17 09:08:18 +01:00
|
|
|
"material-auto-rotating-carousel": "^3.0.2",
|
2021-06-10 19:23:42 +02:00
|
|
|
"mongodb": "^3.6.9",
|
2021-06-22 02:05:48 +02:00
|
|
|
"next": "^11.0.0",
|
2021-05-22 23:32:02 +02:00
|
|
|
"next-auth": "^3.23.0",
|
2020-12-23 00:07:03 +01:00
|
|
|
"next-offline": "^5.0.3",
|
2021-06-22 02:05:10 +02:00
|
|
|
"react": "^17.0.2",
|
|
|
|
|
"react-dom": "^17.0.2",
|
2020-12-17 09:08:18 +01:00
|
|
|
"react-swipeable-views": "^0.13.9"
|
2020-12-04 20:16:24 +01:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"eslint": "^7.14.0",
|
|
|
|
|
"eslint-config-xo-nextjs": "^1.6.0",
|
|
|
|
|
"eslint-plugin-react": "^7.21.5",
|
|
|
|
|
"eslint-plugin-react-hooks": "^4.2.0",
|
|
|
|
|
"xo": "^0.35.0"
|
|
|
|
|
},
|
|
|
|
|
"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",
|
|
|
|
|
"new-cap": [
|
2021-05-27 23:52:16 +02:00
|
|
|
"error",
|
|
|
|
|
{
|
|
|
|
|
"capIsNewExceptions": [
|
|
|
|
|
"Credentials",
|
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-07-30 22:12:28 +02:00
|
|
|
{"png": "always", "jpg": "always"}
|
2021-05-22 23:37:44 +02:00
|
|
|
]
|
2020-12-04 20:16:24 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|