Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: migrate to findable-ui (#35) #36

Merged
merged 1 commit into from
Apr 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
File renamed without changes.
File renamed without changes.
5 changes: 2 additions & 3 deletions .github/workflows/run-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,9 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "16.15.0"
node-version: "20.10.0"

- run: |
cd packages/data-explorer-ui
npm ci
npm run check-format
npm run lint
Expand Down
4 changes: 1 addition & 3 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@
echo '🏗️👷 Checking your project before committing'


echo 'Checking data-explorer-ui'

cd ./packages/data-explorer-ui
echo 'Checking findable-ui'

# Check Prettier
npm run check-format ||
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
45,176 changes: 42,631 additions & 2,545 deletions package-lock.json

Large diffs are not rendered by default.

84 changes: 80 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,87 @@
{
"name": "@databiosphere/findable-ui",
"version": "0.0.0",
"description": "",
"scripts": {
"test": "jest",
"lint": "eslint .",
"check-format": "prettier --check .",
"storybook": "storybook dev -p 6006",
"test-compile": "tsc --noEmit",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "[email protected]:DataBiosphere/findable-ui.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/DataBiosphere/findable-ui/issues"
},
"homepage": "https://github.com/DataBiosphere/findable-ui/tree/main/#readme",
"main": "lib/index.js",
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"husky": "^8.0.3"
"@next/eslint-plugin-next": "^14.1.0",
"@storybook/addon-actions": "^7.6.17",
"@storybook/addon-essentials": "^7.6.17",
"@storybook/addon-interactions": "^7.6.17",
"@storybook/addon-links": "^7.6.17",
"@storybook/addon-mdx-gfm": "^7.6.17",
"@storybook/nextjs": "^7.6.17",
"@storybook/react": "^7.6.17",
"@storybook/testing-library": "^0.2.2",
"@storybook/types": "^7.6.17",
"@types/jest": "^29.4.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/react-gtm-module": "^2.0.1",
"@types/react-window": "^1.8.5",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"eslint": "^8.33.0",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jsdoc": "^48.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sonarjs": "^0.18.0",
"eslint-plugin-sort-destructure-keys": "^1.4.0",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-typescript-sort-keys": "^2.3.0",
"husky": "^8.0.3",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"prettier": "^2.8.3",
"prettier-plugin-organize-imports": "^3.2.2",
"storybook": "^7.6.17",
"ts-jest": "^29.0.5",
"typescript": "^4.6.4"
},
"scripts": {
"prepare": "husky install"
"peerDependencies": {
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
"@mui/icons-material": "5.14.1",
"@mui/material": "5.14.1",
"@tanstack/react-table": "8.5.11",
"@tanstack/react-virtual": "^3.0.0-beta.59",
"axios": "^1.6.7",
"copy-to-clipboard": "3.3.1",
"isomorphic-dompurify": "0.24.0",
"next": "^14.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-gtm-module": "2.0.11",
"react-idle-timer": "^5.6.2",
"react-window": "1.8.9",
"uuid": "8.3.2",
"validate.js": "^0.13.1"
},
"version": "0.1.0"
"engines": {
"node": "20.10.0"
}
}
Loading
Loading