## Description 1. Move everything related to client from app folder to client folder (`.yarn`, `yarn.lock`, package.json, .gitignore) 2. Move `ast` and `rst` to client packages 3. Fix running scripts in packages 4. Add running unit tests in packages in CI TODO: It is necessary to consider enabling the `nmHoistingLimits: workspaces` option, since now all packages are hoisted to the root, there may be issues with dependencies in workspaces. Also, there is a possibility of implicit use of packages. https://yarnpkg.com/configuration/yarnrc#nmHoistingLimits #### PR fixes following issue(s) Fixes #23333 #### Type of change - Chore (housekeeping or task changes that don't impact user perception) ## Testing #### How Has This Been Tested? - [x] Manual - [x] Jest - [x] Cypress ## Checklist: #### Dev activity - [x] My code follows the style guidelines of this project - [x] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes - [ ] PR is being merged under a feature flag Co-authored-by: Valera Melnikov <melnikov.vv@greendatasoft.ru>
63 lines
1.7 KiB
JSON
63 lines
1.7 KiB
JSON
{
|
|
"name": "@design-system/widgets-old",
|
|
"version": "1.1.3",
|
|
"description": "This is the package for the Appsmith design system components",
|
|
"main": "src/index.ts",
|
|
"author": "Valera Melnikov <valera@appsmith.com>, Pawan Kumar <pawan@appsmith.com>",
|
|
"license": "Apache-2.0",
|
|
"scripts": {
|
|
"lint": "yarn g:lint",
|
|
"prettier": "yarn g:prettier"
|
|
},
|
|
"devDependencies": {
|
|
"@svgr/webpack": "5.5.0",
|
|
"@types/emoji-mart": "3.0.4",
|
|
"@types/loadable__component": "^5.13.4",
|
|
"@types/react-form": "^4.0.2",
|
|
"@types/react-table": "*",
|
|
"@types/react-tabs": "*",
|
|
"@types/wait-on": "^5.2.0",
|
|
"concurrently": "^7.3.0",
|
|
"eslint-config-react": "^1.1.7",
|
|
"eslint-plugin-storybook": "^0.6.8",
|
|
"identity-obj-proxy": "3.0.0",
|
|
"playwright": "^1.25.1",
|
|
"postcss": "^8.4.14",
|
|
"postcss-import": "^14.1.0",
|
|
"tsconfig-paths-webpack-plugin": "^3.5.2",
|
|
"wait-on": "^5.3.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@blueprintjs/core": "3.33.0",
|
|
"@blueprintjs/datetime": "3.23.6",
|
|
"copy-to-clipboard": "^3.3.1",
|
|
"react-dnd": "^9.3.4",
|
|
"react-dnd-html5-backend": "^9.3.4",
|
|
"react-redux": "^7.2.4",
|
|
"react-router-dom": "^6.3.0",
|
|
"react-table": "^7.8.0",
|
|
"react-tabs": "3.1.1",
|
|
"react-toastify": "^5.5.0",
|
|
"redux-form": "8.2.6",
|
|
"remixicon-react": "^1.0.0",
|
|
"styled-components": "5.3.6",
|
|
"tinycolor2": "^1.4.2"
|
|
},
|
|
"eslintConfig": {
|
|
"parser": "@typescript-eslint/parser",
|
|
"overrides": [
|
|
{
|
|
"files": [
|
|
"**/*.stories.*"
|
|
],
|
|
"rules": {
|
|
"import/no-anonymous-default-export": "off"
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"emoji-mart": "3.0.1"
|
|
}
|
|
}
|