2019-08-31 04:07:25 +05:00
|
|
|
{
|
2019-10-03 20:07:41 +05:00
|
|
|
"name": "planka-client",
|
2019-08-31 04:07:25 +05:00
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
2022-09-30 11:48:58 +02:00
|
|
|
"build": "react-app-rewired build",
|
2019-08-31 04:07:25 +05:00
|
|
|
"eject": "react-scripts eject",
|
2022-09-30 11:48:58 +02:00
|
|
|
"lint": "eslint --ext js,jsx src config-overrides.js",
|
|
|
|
"start": "react-app-rewired start",
|
|
|
|
"test": "react-app-rewired test"
|
2019-08-31 04:07:25 +05:00
|
|
|
},
|
2019-10-03 20:07:41 +05:00
|
|
|
"browserslist": {
|
|
|
|
"production": [
|
|
|
|
">0.2%",
|
|
|
|
"not dead",
|
|
|
|
"not op_mini all"
|
|
|
|
],
|
|
|
|
"development": [
|
|
|
|
"last 1 chrome version",
|
|
|
|
"last 1 firefox version",
|
|
|
|
"last 1 safari version"
|
|
|
|
]
|
|
|
|
},
|
2019-08-31 04:07:25 +05:00
|
|
|
"eslintConfig": {
|
|
|
|
"env": {
|
2020-08-20 15:35:46 +05:00
|
|
|
"browser": true,
|
|
|
|
"jest": true
|
2019-08-31 04:07:25 +05:00
|
|
|
},
|
2022-02-09 00:56:01 +05:00
|
|
|
"parser": "@babel/eslint-parser",
|
|
|
|
"parserOptions": {
|
|
|
|
"babelOptions": {
|
|
|
|
"presets": [
|
|
|
|
"airbnb"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"requireConfigFile": false
|
|
|
|
},
|
2019-08-31 04:07:25 +05:00
|
|
|
"extends": [
|
|
|
|
"airbnb",
|
2020-02-03 18:42:31 +05:00
|
|
|
"airbnb/hooks",
|
2022-11-21 02:22:01 +07:00
|
|
|
"../package.json"
|
2019-08-31 04:07:25 +05:00
|
|
|
],
|
2020-02-03 18:42:31 +05:00
|
|
|
"rules": {
|
2022-11-21 02:22:01 +07:00
|
|
|
"no-unused-vars": "warn",
|
2020-08-20 15:35:46 +05:00
|
|
|
"import/no-extraneous-dependencies": [
|
|
|
|
"error",
|
|
|
|
{
|
|
|
|
"devDependencies": [
|
|
|
|
"src/setupTests.js",
|
|
|
|
"**/*.test.js"
|
|
|
|
]
|
|
|
|
}
|
2023-12-10 17:13:04 -06:00
|
|
|
],
|
|
|
|
"prettier/prettier": [
|
|
|
|
"error",
|
|
|
|
{
|
|
|
|
"endOfLine": "auto"
|
|
|
|
}
|
2020-02-03 18:42:31 +05:00
|
|
|
]
|
|
|
|
}
|
2019-08-31 04:07:25 +05:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-09-16 14:39:41 +05:00
|
|
|
"@juggle/resize-observer": "^3.4.0",
|
2024-04-23 15:45:47 +02:00
|
|
|
"classnames": "^2.5.1",
|
2023-11-17 14:34:10 +01:00
|
|
|
"date-fns": "^2.30.0",
|
2022-07-24 17:04:26 +02:00
|
|
|
"dequal": "^2.0.3",
|
2022-11-20 20:48:42 +07:00
|
|
|
"easymde": "^2.18.0",
|
2022-11-21 00:54:05 +01:00
|
|
|
"history": "^5.3.0",
|
2024-06-02 01:34:03 +02:00
|
|
|
"i18next": "^23.11.5",
|
|
|
|
"i18next-browser-languagedetector": "^8.0.0",
|
2022-02-09 00:56:01 +05:00
|
|
|
"initials": "^3.1.2",
|
2023-11-17 14:34:10 +01:00
|
|
|
"js-cookie": "^3.0.5",
|
|
|
|
"jwt-decode": "^4.0.0",
|
2024-04-10 15:53:05 +02:00
|
|
|
"linkify-react": "^4.1.3",
|
|
|
|
"linkifyjs": "^4.1.3",
|
2022-07-24 17:04:26 +02:00
|
|
|
"lodash": "^4.17.21",
|
2024-04-23 15:45:47 +02:00
|
|
|
"nanoid": "^5.0.7",
|
2023-11-17 14:34:10 +01:00
|
|
|
"node-sass": "^9.0.0",
|
2024-06-02 01:34:03 +02:00
|
|
|
"photoswipe": "^5.4.4",
|
2022-02-09 00:56:01 +05:00
|
|
|
"prop-types": "^15.8.1",
|
2022-11-21 00:54:05 +01:00
|
|
|
"react": "^18.2.0",
|
2022-11-30 02:50:38 +01:00
|
|
|
"react-app-rewired": "^2.2.1",
|
2022-11-21 00:54:05 +01:00
|
|
|
"react-beautiful-dnd": "^13.1.1",
|
2024-04-23 15:45:47 +02:00
|
|
|
"react-datepicker": "^4.25.0",
|
2022-11-21 00:54:05 +01:00
|
|
|
"react-dom": "^18.2.0",
|
|
|
|
"react-dropzone": "^14.2.3",
|
2024-06-02 01:34:03 +02:00
|
|
|
"react-i18next": "^14.1.2",
|
2019-08-31 04:07:25 +05:00
|
|
|
"react-input-mask": "^2.0.4",
|
2023-11-17 14:34:10 +01:00
|
|
|
"react-markdown": "^8.0.7",
|
|
|
|
"react-photoswipe-gallery": "^2.2.7",
|
|
|
|
"react-redux": "^8.1.3",
|
2024-06-02 01:34:03 +02:00
|
|
|
"react-router-dom": "^6.23.1",
|
2022-04-16 00:08:14 +05:00
|
|
|
"react-scripts": "5.0.1",
|
2022-11-20 20:48:42 +07:00
|
|
|
"react-simplemde-editor": "^5.2.0",
|
2023-11-17 14:34:10 +01:00
|
|
|
"react-textarea-autosize": "^8.5.3",
|
|
|
|
"redux": "^4.2.1",
|
2019-08-31 04:07:25 +05:00
|
|
|
"redux-logger": "^3.0.6",
|
2020-08-11 20:45:35 +05:00
|
|
|
"redux-orm": "^0.16.2",
|
2024-04-23 15:45:47 +02:00
|
|
|
"redux-saga": "^1.3.0",
|
2023-11-17 14:34:10 +01:00
|
|
|
"remark-breaks": "^4.0.0",
|
2023-11-23 14:40:44 +01:00
|
|
|
"remark-gfm": "^3.0.1",
|
2023-11-17 14:34:10 +01:00
|
|
|
"reselect": "^4.1.8",
|
2019-08-31 04:07:25 +05:00
|
|
|
"sails.io.js": "^1.2.1",
|
2024-04-23 15:45:47 +02:00
|
|
|
"semantic-ui-react": "^2.1.5",
|
2022-11-21 00:54:05 +01:00
|
|
|
"socket.io-client": "^2.5.0",
|
2024-06-02 01:34:03 +02:00
|
|
|
"validator": "^13.12.0",
|
2024-04-23 15:45:47 +02:00
|
|
|
"whatwg-fetch": "^3.6.20",
|
2022-09-03 22:47:06 +05:00
|
|
|
"zxcvbn": "^4.4.2"
|
2019-08-31 04:07:25 +05:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-06-02 01:34:03 +02:00
|
|
|
"@testing-library/jest-dom": "^6.4.5",
|
|
|
|
"@testing-library/react": "^15.0.7",
|
2024-04-23 15:45:47 +02:00
|
|
|
"@testing-library/user-event": "^14.5.2",
|
2022-02-09 00:56:01 +05:00
|
|
|
"babel-preset-airbnb": "^5.0.0",
|
2024-04-23 15:45:47 +02:00
|
|
|
"chai": "^4.4.1",
|
|
|
|
"eslint": "^8.57.0",
|
2022-02-09 00:56:01 +05:00
|
|
|
"eslint-config-airbnb": "^19.0.4",
|
2024-04-23 15:45:47 +02:00
|
|
|
"eslint-plugin-import": "^2.29.1",
|
2023-11-17 14:34:10 +01:00
|
|
|
"eslint-plugin-jsx-a11y": "^6.8.0",
|
2024-06-02 01:34:03 +02:00
|
|
|
"eslint-plugin-react": "^7.34.2",
|
|
|
|
"eslint-plugin-react-hooks": "^4.6.2",
|
2022-11-21 00:54:05 +01:00
|
|
|
"react-test-renderer": "^18.2.0"
|
2019-08-31 04:07:25 +05:00
|
|
|
}
|
|
|
|
}
|