Skip to content

Commit 65be7c4

Browse files
authored
chore: migrate to findable-ui (#35) (#36)
1 parent 5494ac7 commit 65be7c4

File tree

596 files changed

+42714
-44750
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

596 files changed

+42714
-44750
lines changed
File renamed without changes.
File renamed without changes.

.github/workflows/run-checks.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,9 @@ jobs:
88
- uses: actions/checkout@v2
99
- uses: actions/setup-node@v2
1010
with:
11-
node-version: "16.15.0"
12-
11+
node-version: "20.10.0"
12+
1313
- run: |
14-
cd packages/data-explorer-ui
1514
npm ci
1615
npm run check-format
1716
npm run lint

.husky/pre-commit

+1-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@
44
echo '🏗️👷 Checking your project before committing'
55

66

7-
echo 'Checking data-explorer-ui'
8-
9-
cd ./packages/data-explorer-ui
7+
echo 'Checking findable-ui'
108

119
# Check Prettier
1210
npm run check-format ||
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

package-lock.json

+42,631-2,545
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+80-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,87 @@
11
{
2+
"name": "@databiosphere/findable-ui",
3+
"version": "0.0.0",
4+
"description": "",
5+
"scripts": {
6+
"test": "jest",
7+
"lint": "eslint .",
8+
"check-format": "prettier --check .",
9+
"storybook": "storybook dev -p 6006",
10+
"test-compile": "tsc --noEmit",
11+
"prepare": "husky install"
12+
},
13+
"repository": {
14+
"type": "git",
15+
"url": "[email protected]:DataBiosphere/findable-ui.git"
16+
},
17+
"author": "",
18+
"license": "Apache-2.0",
19+
"bugs": {
20+
"url": "https://github.com/DataBiosphere/findable-ui/issues"
21+
},
22+
"homepage": "https://github.com/DataBiosphere/findable-ui/tree/main/#readme",
23+
"main": "lib/index.js",
224
"devDependencies": {
325
"@commitlint/cli": "^17.4.2",
426
"@commitlint/config-conventional": "^17.4.2",
5-
"husky": "^8.0.3"
27+
"@next/eslint-plugin-next": "^14.1.0",
28+
"@storybook/addon-actions": "^7.6.17",
29+
"@storybook/addon-essentials": "^7.6.17",
30+
"@storybook/addon-interactions": "^7.6.17",
31+
"@storybook/addon-links": "^7.6.17",
32+
"@storybook/addon-mdx-gfm": "^7.6.17",
33+
"@storybook/nextjs": "^7.6.17",
34+
"@storybook/react": "^7.6.17",
35+
"@storybook/testing-library": "^0.2.2",
36+
"@storybook/types": "^7.6.17",
37+
"@types/jest": "^29.4.0",
38+
"@types/react": "^18.2.0",
39+
"@types/react-dom": "^18.2.0",
40+
"@types/react-gtm-module": "^2.0.1",
41+
"@types/react-window": "^1.8.5",
42+
"@types/uuid": "8.3.4",
43+
"@typescript-eslint/eslint-plugin": "^5.49.0",
44+
"eslint": "^8.33.0",
45+
"eslint-config-next": "^14.1.0",
46+
"eslint-config-prettier": "^8.6.0",
47+
"eslint-plugin-eslint-comments": "^3.2.0",
48+
"eslint-plugin-jsdoc": "^48.1.0",
49+
"eslint-plugin-prettier": "^4.2.1",
50+
"eslint-plugin-react-hooks": "^4.6.0",
51+
"eslint-plugin-sonarjs": "^0.18.0",
52+
"eslint-plugin-sort-destructure-keys": "^1.4.0",
53+
"eslint-plugin-storybook": "^0.8.0",
54+
"eslint-plugin-typescript-sort-keys": "^2.3.0",
55+
"husky": "^8.0.3",
56+
"jest": "^29.4.1",
57+
"jest-environment-jsdom": "^29.4.1",
58+
"prettier": "^2.8.3",
59+
"prettier-plugin-organize-imports": "^3.2.2",
60+
"storybook": "^7.6.17",
61+
"ts-jest": "^29.0.5",
62+
"typescript": "^4.6.4"
663
},
7-
"scripts": {
8-
"prepare": "husky install"
64+
"peerDependencies": {
65+
"@emotion/react": "11.11.1",
66+
"@emotion/styled": "11.11.0",
67+
"@mui/icons-material": "5.14.1",
68+
"@mui/material": "5.14.1",
69+
"@tanstack/react-table": "8.5.11",
70+
"@tanstack/react-virtual": "^3.0.0-beta.59",
71+
"axios": "^1.6.7",
72+
"copy-to-clipboard": "3.3.1",
73+
"isomorphic-dompurify": "0.24.0",
74+
"next": "^14.1.0",
75+
"react": "^18.2.0",
76+
"react-dom": "^18.2.0",
77+
"react-dropzone": "^14.2.3",
78+
"react-gtm-module": "2.0.11",
79+
"react-idle-timer": "^5.6.2",
80+
"react-window": "1.8.9",
81+
"uuid": "8.3.2",
82+
"validate.js": "^0.13.1"
983
},
10-
"version": "0.1.0"
84+
"engines": {
85+
"node": "20.10.0"
86+
}
1187
}

0 commit comments

Comments
 (0)