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

110 lines
2.6 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
},
"parser": "babel-eslint",
"plugins": [
"prettier"
],
2019-08-31 04:07:25 +05:00
"extends": [
"airbnb",
"airbnb/hooks",
"plugin:prettier/recommended",
"prettier/react"
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",
2020-03-25 00:15:47 +05:00
"connected-react-router": "^6.8.0",
"date-fns": "^2.15.0",
2020-08-20 15:35:46 +05:00
"dequal": "^2.0.2",
"history": "^4.10.1",
2020-08-20 15:35:46 +05:00
"i18next": "^19.7.0",
"i18next-browser-languagedetector": "^6.0.1",
"initials": "^3.1.1",
2020-08-20 15:35:46 +05:00
"lodash": "^4.17.20",
"node-sass": "^4.14.1",
2019-08-31 04:07:25 +05:00
"prop-types": "^15.7.2",
2020-03-25 00:15:47 +05:00
"react": "^16.13.1",
2020-03-14 20:58:48 +05:00
"react-beautiful-dnd": "^13.0.0",
"react-datepicker": "^3.1.3",
2020-03-25 00:15:47 +05:00
"react-dom": "^16.13.1",
2020-08-20 15:35:46 +05:00
"react-dropzone": "^11.0.3",
"react-i18next": "^11.7.0",
2019-08-31 04:07:25 +05:00
"react-input-mask": "^2.0.4",
2020-01-14 13:10:34 +05:00
"react-markdown": "^4.3.1",
"react-redux": "^7.2.1",
2020-05-26 14:10:06 +05:00
"react-router-dom": "^5.2.0",
2020-08-20 15:35:46 +05:00
"react-scripts": "3.4.3",
"react-textarea-autosize": "^8.2.0",
2019-12-30 04:24:06 +05:00
"redux": "^4.0.5",
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",
2019-08-31 04:07:25 +05:00
"reselect": "^4.0.0",
"sails.io.js": "^1.2.1",
2020-08-20 15:35:46 +05:00
"semantic-ui-react": "^1.2.1",
"socket.io-client": "^2.3.0",
"validator": "^13.1.1",
2020-08-11 20:45:35 +05:00
"whatwg-fetch": "^3.4.0"
2019-08-31 04:07:25 +05:00
},
"devDependencies": {
2020-08-20 15:35:46 +05:00
"chai": "^4.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.3",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.0",
2020-04-29 04:49:39 +05:00
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
2020-08-20 15:35:46 +05:00
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"jest-enzyme": "^7.1.2",
"prettier": "2.0.5",
"react-test-renderer": "^16.13.1"
2019-08-31 04:07:25 +05:00
}
}