Files
pawol.nu/package.json
T

88 lines
2.1 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-01-19 06:14:24 +04:00
"@emotion/react": "^11.7.1",
2022-01-22 18:09:41 +04:00
"@emotion/server": "^11.4.0",
2022-01-19 06:14:24 +04:00
"@emotion/styled": "^11.6.0",
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-01-19 06:14:24 +04:00
"@mui/icons-material": "^5.3.0",
"@mui/lab": "^5.0.0-alpha.65",
"@mui/material": "^5.3.0",
2022-01-19 07:07:08 +04:00
"@mui/styles": "^5.3.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",
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",
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-01-17 22:28:31 +04:00
"next": "12",
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-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",
"sharp": "^0.29.3"
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",
"js": "always"
}
],
2022-01-22 18:09:20 +04:00
"node/prefer-global/process": "off",
"func-names": "off"
2020-12-04 20:16:24 +01:00
}
}
}