1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-18 20:59:44 +02:00
planka/client/package.json

117 lines
2.9 KiB
JSON
Raw Normal View History

2019-08-31 04:07:25 +05:00
{
"name": "planka-client",
2019-08-31 04:07:25 +05:00
"private": true,
"scripts": {
"build": "react-app-rewired build",
2019-08-31 04:07:25 +05:00
"eject": "react-scripts eject",
"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
},
"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",
"airbnb/hooks",
"../package.json"
2019-08-31 04:07:25 +05:00
],
"rules": {
"no-unused-vars": "warn",
2020-08-20 15:35:46 +05:00
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": [
"src/setupTests.js",
"**/*.test.js"
]
}
]
}
2019-08-31 04:07:25 +05:00
},
"dependencies": {
2022-09-16 14:39:41 +05:00
"@juggle/resize-observer": "^3.4.0",
2022-11-21 00:54:05 +01:00
"classnames": "^2.3.2",
"date-fns": "^2.29.3",
2022-07-24 17:04:26 +02:00
"dequal": "^2.0.3",
"easymde": "^2.18.0",
2022-11-21 00:54:05 +01:00
"history": "^5.3.0",
"i18next": "^22.0.6",
"i18next-browser-languagedetector": "^7.0.1",
2022-02-09 00:56:01 +05:00
"initials": "^3.1.2",
"js-cookie": "^3.0.1",
"jwt-decode": "^3.1.2",
2022-07-24 17:04:26 +02:00
"lodash": "^4.17.21",
2022-11-21 00:54:05 +01:00
"node-sass": "^8.0.0",
"photoswipe": "^5.3.3",
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",
"react-beautiful-dnd": "^13.1.1",
2022-07-24 17:04:26 +02:00
"react-datepicker": "^4.8.0",
2022-11-21 00:54:05 +01:00
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-i18next": "^12.0.0",
2019-08-31 04:07:25 +05:00
"react-input-mask": "^2.0.4",
2022-07-24 17:04:26 +02:00
"react-markdown": "^8.0.3",
2022-11-21 00:54:05 +01:00
"react-photoswipe-gallery": "^2.2.2",
"react-redux": "^8.0.5",
"react-router": "^6.4.3",
"react-router-dom": "^6.4.3",
2022-04-16 00:08:14 +05:00
"react-scripts": "5.0.1",
"react-simplemde-editor": "^5.2.0",
2022-11-21 00:54:05 +01:00
"react-textarea-autosize": "^8.4.0",
2022-07-24 17:04:26 +02:00
"redux": "^4.2.0",
2022-11-21 00:54:05 +01:00
"redux-first-history": "^5.1.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",
2022-11-21 00:54:05 +01:00
"redux-saga": "^1.2.1",
"remark-breaks": "^3.0.2",
2022-02-09 00:56:01 +05:00
"remark-gfm": "^3.0.1",
2022-11-21 00:54:05 +01:00
"reselect": "^4.1.7",
2019-08-31 04:07:25 +05:00
"sails.io.js": "^1.2.1",
2022-07-24 17:04:26 +02:00
"semantic-ui-react": "^2.1.3",
2022-11-21 00:54:05 +01:00
"socket.io-client": "^2.5.0",
2022-02-09 00:56:01 +05:00
"validator": "^13.7.0",
"whatwg-fetch": "^3.6.2",
"zxcvbn": "^4.4.2"
2019-08-31 04:07:25 +05:00
},
"devDependencies": {
2022-11-21 00:54:05 +01:00
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
2022-02-09 00:56:01 +05:00
"babel-preset-airbnb": "^5.0.0",
2022-11-21 00:54:05 +01:00
"chai": "^4.3.7",
"eslint": "^8.28.0",
2022-02-09 00:56:01 +05:00
"eslint-config-airbnb": "^19.0.4",
2022-04-16 00:08:14 +05:00
"eslint-plugin-import": "^2.26.0",
2022-07-24 17:04:26 +02:00
"eslint-plugin-jsx-a11y": "^6.6.1",
2022-11-21 00:54:05 +01:00
"eslint-plugin-react": "^7.31.11",
2022-07-24 17:04:26 +02:00
"eslint-plugin-react-hooks": "^4.6.0",
"react-app-rewired": "^2.2.1",
2022-11-21 00:54:05 +01:00
"react-test-renderer": "^18.2.0"
2019-08-31 04:07:25 +05:00
}
}