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

186 lines
5 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,
"type": "module",
2019-08-31 04:07:25 +05:00
"scripts": {
"build": "vite build",
"postinstall": "patch-package",
"lint": "eslint --ext js,jsx src --report-unused-disable-directives",
"start": "vite",
"test": "jest",
"test:acceptance": "cucumber-js --import tests/acceptance/cucumber.conf.js --import tests/acceptance/steps/**/*.js --format @cucumber/pretty-formatter tests"
2019-08-31 04:07:25 +05:00
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
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": {
"import/no-unresolved": [
2020-08-20 15:35:46 +05:00
"error",
{
"ignore": [
"\\.svg\\?react$"
2020-08-20 15:35:46 +05:00
]
}
],
"prettier/prettier": [
"error",
{
"endOfLine": "auto",
"printWidth": 100,
"singleQuote": true,
"trailingComma": "all"
}
]
},
"overrides": [
{
"files": [
"tests/acceptance/**/*.js"
],
"rules": {
"import/extensions": "off"
},
"globals": {
"browser": "readonly",
"context": "readonly",
"page": "readonly"
}
}
]
},
"jest": {
"transform": {
"^.+\\.(js|jsx)$": "babel-jest"
}
2019-08-31 04:07:25 +05:00
},
"dependencies": {
"@ballerina/highlightjs-ballerina": "^1.0.1",
2025-06-03 13:02:16 +02:00
"@diplodoc/cut-extension": "^0.7.4",
"@diplodoc/transform": "^4.57.7",
"@gravity-ui/components": "^4.4.0",
2025-06-30 12:43:06 +02:00
"@gravity-ui/markdown-editor": "^15.14.1",
"@gravity-ui/uikit": "^7.16.2",
2022-09-16 14:39:41 +05:00
"@juggle/resize-observer": "^3.4.0",
2025-06-30 12:43:06 +02:00
"@vitejs/plugin-react": "^4.6.0",
"browserslist-to-esbuild": "^2.1.1",
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",
"highlight.js": "^11.11.1",
"highlightjs-4d": "^1.0.6",
"highlightjs-alan": "^0.0.2",
"highlightjs-apex": "^1.5.0",
"highlightjs-blade": "^0.1.0",
"highlightjs-cobol": "^0.3.3",
2025-06-30 12:43:06 +02:00
"highlightjs-cshtml-razor": "^2.2.0",
"highlightjs-gf": "^1.0.1",
"highlightjs-jolie": "^0.1.8",
"highlightjs-lean": "^1.2.0",
"highlightjs-lookml": "^1.0.2",
"highlightjs-macaulay2": "^0.2.5",
"highlightjs-mlir": "^0.0.1",
"highlightjs-qsharp": "^1.0.2",
"highlightjs-redbol": "^2.1.2",
"highlightjs-rpm-specfile": "^1.0.0",
"highlightjs-sap-abap": "^0.3.0",
"highlightjs-solidity": "^2.0.6",
"highlightjs-supercollider": "^1.0.0",
"highlightjs-svelte": "^1.0.6",
"highlightjs-xsharp": "^1.0.0",
"highlightjs-zenscript": "^2.0.0",
"hightlightjs-papyrus": "^0.0.4",
2022-11-21 00:54:05 +01:00
"history": "^5.3.0",
2025-06-03 13:02:16 +02:00
"i18next": "^25.2.1",
2025-06-30 12:43:06 +02:00
"i18next-browser-languagedetector": "^8.2.0",
2022-02-09 00:56:01 +05:00
"initials": "^3.1.2",
"javascript-time-ago": "^2.5.11",
2023-11-17 14:34:10 +01:00
"js-cookie": "^3.0.5",
"jwt-decode": "^4.0.0",
"linkify-react": "^4.3.1",
"linkifyjs": "^4.3.1",
2022-07-24 17:04:26 +02:00
"lodash": "^4.17.21",
"lowlight": "^3.3.0",
"markdown-it": "^13.0.2",
"nanoid": "^5.1.5",
"papaparse": "^5.5.3",
"patch-package": "^8.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",
2024-09-16 12:04:56 +02:00
"react": "18.2.0",
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",
2024-09-16 12:04:56 +02:00
"react-dom": "18.2.0",
"react-dropzone": "^14.3.8",
"react-frame-component": "^5.2.7",
"react-hot-toast": "^2.5.2",
2025-06-30 12:43:06 +02:00
"react-i18next": "^15.5.3",
2019-08-31 04:07:25 +05:00
"react-input-mask": "^2.0.4",
"react-intersection-observer": "^9.16.0",
"react-mentions": "^4.4.10",
2023-11-17 14:34:10 +01:00
"react-photoswipe-gallery": "^2.2.7",
"react-redux": "^8.1.3",
2025-06-03 13:02:16 +02:00
"react-router-dom": "^6.30.1",
"react-textarea-autosize": "^8.5.9",
"react-time-ago": "^7.3.3",
2023-11-17 14:34:10 +01:00
"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
"reselect": "^4.1.8",
2019-08-31 04:07:25 +05:00
"sails.io.js": "^1.2.1",
2025-06-30 12:43:06 +02:00
"sass-embedded": "^1.89.2",
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",
2025-06-03 13:02:16 +02:00
"validator": "^13.15.15",
2025-05-10 21:45:31 +02:00
"vite": "^6.3.5",
"vite-plugin-commonjs": "^0.10.4",
"vite-plugin-node-polyfills": "^0.23.0",
"vite-plugin-svgr": "^4.3.0",
"zxcvbn": "^4.4.2"
2019-08-31 04:07:25 +05:00
},
"devDependencies": {
2025-06-30 12:43:06 +02:00
"@babel/eslint-parser": "^7.27.5",
"@babel/preset-env": "^7.27.2",
2025-06-03 13:02:16 +02:00
"@cucumber/cucumber": "^11.3.0",
"@cucumber/pretty-formatter": "^1.0.1",
2025-06-30 12:43:06 +02:00
"@playwright/test": "^1.53.1",
"babel-jest": "^29.7.0",
2022-02-09 00:56:01 +05:00
"babel-preset-airbnb": "^5.0.0",
"eslint": "^8.57.1",
2022-02-09 00:56:01 +05:00
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
2025-06-30 12:43:06 +02:00
"eslint-plugin-import": "^2.32.0",
2024-11-22 17:13:17 +01:00
"eslint-plugin-jsx-a11y": "^6.10.2",
2025-06-30 12:43:06 +02:00
"eslint-plugin-prettier": "^5.5.1",
"eslint-plugin-react": "^7.37.5",
2024-06-02 01:34:03 +02:00
"eslint-plugin-react-hooks": "^4.6.2",
"jest": "^29.7.0",
2025-06-30 12:43:06 +02:00
"playwright": "^1.53.1",
"prettier": "3.3.3"
2019-08-31 04:07:25 +05:00
}
}