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

119 lines
2.8 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-scripts build",
"eject": "react-scripts eject",
"lint": "eslint --ext js,jsx src",
2019-08-31 04:07:25 +05:00
"start": "react-scripts start",
"test": "react-scripts test"
},
"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
},
"plugins": [
"prettier"
],
2019-08-31 04:07:25 +05:00
"extends": [
"airbnb",
"airbnb/hooks",
"plugin:prettier/recommended"
2019-08-31 04:07:25 +05:00
],
"rules": {
2020-08-20 15:35:46 +05:00
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": [
"src/setupTests.js",
"**/*.test.js"
]
}
],
"prettier/prettier": [
"error",
{
"printWidth": 100,
"singleQuote": true,
"trailingComma": "all"
}
]
}
2019-08-31 04:07:25 +05:00
},
"dependencies": {
"classnames": "^2.2.6",
2022-02-09 00:56:01 +05:00
"connected-react-router": "^6.9.2",
"date-fns": "^2.28.0",
2020-08-20 15:35:46 +05:00
"dequal": "^2.0.2",
"history": "^4.10.1",
2022-04-16 00:08:14 +05:00
"i18next": "^21.6.16",
2022-03-31 02:23:44 +05:00
"i18next-browser-languagedetector": "^6.1.4",
2022-02-09 00:56:01 +05:00
"initials": "^3.1.2",
2020-08-20 15:35:46 +05:00
"lodash": "^4.17.20",
2022-02-09 00:56:01 +05:00
"node-sass": "^7.0.1",
"prop-types": "^15.8.1",
2022-04-16 00:08:14 +05:00
"react": "^17.0.2",
2020-03-14 20:58:48 +05:00
"react-beautiful-dnd": "^13.0.0",
2022-04-16 00:08:14 +05:00
"react-datepicker": "^4.7.0",
"react-dom": "^17.0.2",
"react-dropzone": "^12.0.5",
"react-i18next": "^11.16.6",
2019-08-31 04:07:25 +05:00
"react-input-mask": "^2.0.4",
2022-04-16 00:08:14 +05:00
"react-markdown": "^8.0.2",
"react-redux": "^7.2.8",
"react-router-dom": "^5.3.1",
2022-04-16 00:08:14 +05:00
"react-scripts": "5.0.1",
"react-textarea-autosize": "^8.3.3",
2022-02-09 00:56:01 +05:00
"redux": "^4.1.2",
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",
2019-11-18 11:59:37 +05:00
"redux-saga": "^1.1.3",
2022-02-09 00:56:01 +05:00
"remark-gfm": "^3.0.1",
"reselect": "^4.1.5",
2019-08-31 04:07:25 +05:00
"sails.io.js": "^1.2.1",
2022-04-16 00:08:14 +05:00
"semantic-ui-react": "^2.1.2",
2020-10-20 16:10:25 +05:00
"socket.io-client": "^2.3.1",
2022-02-09 00:56:01 +05:00
"validator": "^13.7.0",
2020-11-20 06:01:42 +05:00
"whatwg-fetch": "^3.5.0"
2019-08-31 04:07:25 +05:00
},
"devDependencies": {
2022-04-16 00:08:14 +05:00
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.7",
2022-02-09 00:56:01 +05:00
"babel-preset-airbnb": "^5.0.0",
"chai": "^4.3.6",
2020-08-20 15:35:46 +05:00
"enzyme": "^3.11.0",
2022-04-16 00:08:14 +05:00
"eslint": "^8.13.0",
2022-02-09 00:56:01 +05:00
"eslint-config-airbnb": "^19.0.4",
2022-04-16 00:08:14 +05:00
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
2022-02-09 00:56:01 +05:00
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
2022-04-16 00:08:14 +05:00
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
2020-08-20 15:35:46 +05:00
"jest-enzyme": "^7.1.2",
2022-04-16 00:08:14 +05:00
"prettier": "2.6.2",
"react-test-renderer": "^17.0.2"
2019-08-31 04:07:25 +05:00
}
}