Skip to content
Open
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,9 @@ release-punchlist.txt
license-compliance.txt
table-comparison-googledoc.md
dependency-licenses.csv

# Environment files
.env
.env.local
.env.development
.env.production
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,9 @@ cd ts-lib-ui-kit
# Install dependencies
yarn

# Build the library (required — the example app uses the local workspace build)
yarn build

# Run the themed example app
yarn workspace vite-themed-app dev
```
Expand All @@ -240,7 +243,7 @@ Visit <http://localhost:5173> to see the example app with custom theming.

## Tech Stack

- React 18
- React 19
- TypeScript
- styled-components
- Plotly.js (charts)
Expand Down
2 changes: 2 additions & 0 deletions examples/vite-themed-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,13 @@
},
"dependencies": {
"@tetrascience-npm/tetrascience-react-ui": "workspace:*",
"cookie-parser": "^1.4.7",
"express": "^4.21.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.7",
"@types/express": "^4.17.21",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
Expand Down
5 changes: 5 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@
"dependencies": {
"@dagrejs/dagre": "^1.1.4",
"@monaco-editor/react": "^4.7.0",
"@tetrascience-npm/tetrascience-react-ui": "^0.3.0",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

need to take a closer look but I think we want this dependency to live in the example app's package.json

"@tetrascience-npm/ts-connectors-sdk": "^3.2.0",
"@types/plotly.js": "^3.0.0",
"@types/react-plotly.js": "^2.6.3",
Expand Down Expand Up @@ -131,7 +132,11 @@
},
"devDependencies": {
"@aws-sdk/client-athena": "^3.975.0",
"@aws-sdk/client-cloudwatch-logs": "^3.0.0",
"@aws-sdk/client-s3": "^3.985.0",
"@aws-sdk/client-sqs": "^3.0.0",
"@aws-sdk/client-ssm": "^3.0.0",
"@aws-sdk/lib-storage": "^3.0.0",
"@aws-sdk/s3-request-presigner": "^3.985.0",
"@databricks/sql": "^1.12.0",
"@eslint/js": "^9.9.0",
Expand Down
Loading
Loading