Skip to content
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 9 additions & 28 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ on:
concurrency: ${{ github.workflow }}-${{ github.ref }}

jobs:
build:
name: Build
build-and-lint:
name: Build and Lint Packages
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
Expand All @@ -28,34 +28,15 @@ jobs:

- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Build Applications and Packages
run: pnpm build

lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4

- name: Setup Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.17.0

- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9.12.0

- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm build

- name: Lint Applications and Packages
- name: Lint
run: pnpm lint

test-unit:
name: Unit Test Applications and Packages
name: Unit Test Packages
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
Expand All @@ -74,11 +55,11 @@ jobs:
- name: Install Dependencies
run: pnpm install --frozen-lockfile

- name: Test Applications and Packages
- name: Unit Test
run: pnpm test:unit

test-component:
name: Component Test Applications and Packages
name: Component Test Packages
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
Expand All @@ -97,5 +78,5 @@ jobs:
- name: Install Dependencies
run: pnpm install --frozen-lockfile

- name: Test Components
- name: Component Test
run: pnpm test:component
44 changes: 22 additions & 22 deletions packages/authentication/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,37 +14,37 @@
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
},
"dependencies": {
"@hookform/resolvers": "3.6.0",
"@tanstack/react-query": "5.45.1",
"jotai": "2.9.3",
"js-cookie": "3.0.5",
"react-hook-form": "7.51.5",
"zod": "3.24.1"
"@hookform/resolvers": "catalog:",
"@tanstack/react-query": "catalog:",
"jotai": "catalog:",
"js-cookie": "catalog:",
"react-hook-form": "catalog:",
"zod": "catalog:"
},
"peerDependencies": {
"@baseapp-frontend/utils": "workspace:*",
"react": "18.3.1"
"react": "catalog:react18"
},
"devDependencies": {
"@baseapp-frontend/config": "workspace:*",
"@baseapp-frontend/eslint-plugin": "workspace:*",
"@baseapp-frontend/test": "workspace:*",
"@baseapp-frontend/tsconfig": "workspace:*",
"@faker-js/faker": "^9.0.3",
"@testing-library/jest-dom": "6.4.6",
"@testing-library/react": "16.0.0",
"@testing-library/user-event": "14.5.2",
"@types/jest": "29.5.12",
"@types/js-cookie": "3.0.6",
"@types/node": "22.7.2",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"babel-jest": "29.7.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"ts-jest": "29.1.4",
"ts-node": "10.9.2",
"typescript": "5.4.5"
"@faker-js/faker": "catalog:test",
"@testing-library/jest-dom": "catalog:test",
"@testing-library/react": "catalog:test",
"@testing-library/user-event": "catalog:test",
"@types/jest": "catalog:test",
"@types/js-cookie": "catalog:",
"@types/node": "catalog:",
"@types/react": "catalog:react18",
"@types/react-dom": "catalog:react18",
"babel-jest": "catalog:test",
"jest": "catalog:test",
"jest-environment-jsdom": "catalog:test",
"ts-jest": "catalog:test",
"ts-node": "catalog:test",
"typescript": "catalog:"
},
"license": "MIT",
"repository": {
Expand Down
179 changes: 89 additions & 90 deletions packages/components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@
"cypress:open": "cypress open --browser chrome",
"test:component": "cypress run --component --browser chrome --headed",
"test:unit": "jest --config ./jest.config.ts",
"prepublishOnly": "pnpm run build",
"prepare": "pnpm run build"
"prepublishOnly": "pnpm run build"
},
"exports": {
"./shared/*": {
Expand Down Expand Up @@ -67,112 +66,112 @@
"dist"
],
"dependencies": {
"@emotion/cache": "11.11.0",
"@emotion/react": "11.11.4",
"@emotion/styled": "11.11.5",
"@gorhom/bottom-sheet": "^5.0.6",
"@hookform/resolvers": "3.6.0",
"@mui/icons-material": "5.15.19",
"@mui/lab": "5.0.0-alpha.170",
"@mui/material": "5.15.19",
"@mui/system": "5.16.12",
"@mui/x-date-pickers": "7.6.2",
"@storybook/react": "8.4.7",
"@tanstack/react-query": "5.45.1",
"expo-file-system": "~18.0.6",
"expo-image-picker": "~16.0.4",
"expo-router": "~4.0.5",
"@emotion/cache": "catalog:material-ui",
"@emotion/react": "catalog:material-ui",
"@emotion/styled": "catalog:material-ui",
"@gorhom/bottom-sheet": "catalog:react-native-core",
"@hookform/resolvers": "catalog:",
"@mui/icons-material": "catalog:material-ui",
"@mui/lab": "catalog:material-ui",
"@mui/material": "catalog:material-ui",
"@mui/system": "catalog:material-ui",
"@mui/x-date-pickers": "catalog:material-ui",
"@storybook/react": "catalog:storybook",
"@tanstack/react-query": "catalog:",
"expo-file-system": "catalog:react-native-core",
"expo-image-picker": "catalog:react-native-core",
"expo-router": "catalog:react-native-core",
"framer-motion": "^11.5.4",
"graphql": "16.8.1",
"js-cookie": "3.0.5",
"luxon": "3.4.4",
"next": "14.3.0-canary.24",
"graphql": "catalog:graphql",
"js-cookie": "catalog:",
"luxon": "catalog:",
"next": "catalog:",
"numbro": "^2.5.0",
"react-hook-form": "7.51.5",
"react-native": "0.76.3",
"react-native-gesture-handler": "~2.20.2",
"react-relay": "16.2.0",
"react-virtuoso": "4.7.11",
"relay-connection-handler-plus": "0.1.2",
"relay-runtime": "16.2.0",
"react-hook-form": "catalog:",
"react-native": "catalog:react-native-core",
"react-native-gesture-handler": "catalog:react-native-core",
"react-relay": "catalog:graphql",
"react-virtuoso": "catalog:",
"relay-connection-handler-plus": "catalog:graphql",
"relay-runtime": "catalog:graphql",
"slugify": "^1.6.6",
"use-long-press": "^3.2.0",
"zod": "3.24.1",
"zustand": "4.5.2"
"zod": "catalog:",
"zustand": "catalog:"
},
"peerDependencies": {
"@baseapp-frontend/authentication": "workspace:*",
"@baseapp-frontend/design-system": "workspace:*",
"@baseapp-frontend/graphql": "workspace:*",
"@baseapp-frontend/utils": "workspace:*",
"react": "18.3.1",
"react-dom": "18.3.1"
"react": "catalog:react18",
"react-dom": "catalog:react18"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.25.9",
"@babel/preset-typescript": "7.26.0",
"@babel/preset-env": "catalog:storybook",
"@babel/preset-react": "catalog:storybook",
"@babel/preset-typescript": "catalog:storybook",
"@baseapp-frontend/config": "workspace:*",
"@baseapp-frontend/test": "workspace:*",
"@baseapp-frontend/tsconfig": "workspace:*",
"@chromatic-com/storybook": "3.2.3",
"@cypress/webpack-dev-server": "3.10.1",
"@faker-js/faker": "^9.0.3",
"@storybook/addon-docs": "8.4.7",
"@storybook/addon-essentials": "8.4.7",
"@storybook/addon-interactions": "8.4.7",
"@storybook/addon-links": "8.4.7",
"@storybook/addon-styling-webpack": "1.0.1",
"@storybook/addon-webpack5-compiler-babel": "3.0.3",
"@storybook/blocks": "8.4.7",
"@storybook/react-webpack5": "8.4.7",
"@storybook/test": "8.4.7",
"@tailwindcss/typography": "0.5.13",
"@testing-library/cypress": "10.0.2",
"@testing-library/jest-dom": "6.4.6",
"@testing-library/react": "16.0.0",
"@testing-library/user-event": "14.5.2",
"@types/jest": "29.5.12",
"@types/js-cookie": "3.0.6",
"@types/luxon": "3.4.2",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/react-relay": "16.0.6",
"@types/relay-runtime": "17.0.3",
"@types/relay-test-utils": "14.1.4",
"autoprefixer": "10.4.19",
"babel-jest": "29.7.0",
"babel-loader": "9.2.1",
"babel-plugin-relay": "17.0.0",
"css-loader": "7.1.2",
"cypress": "13.16.1",
"cypress-plugin-steps": "1.1.1",
"cypress-wait-until": "3.0.2",
"@chromatic-com/storybook": "catalog:storybook",
"@cypress/webpack-dev-server": "catalog:test",
"@faker-js/faker": "catalog:test",
"@storybook/addon-docs": "catalog:storybook",
"@storybook/addon-essentials": "catalog:storybook",
"@storybook/addon-interactions": "catalog:storybook",
"@storybook/addon-links": "catalog:storybook",
"@storybook/addon-styling-webpack": "catalog:storybook",
"@storybook/addon-webpack5-compiler-babel": "catalog:storybook",
"@storybook/blocks": "catalog:storybook",
"@storybook/react-webpack5": "catalog:storybook",
"@storybook/test": "catalog:storybook",
"@tailwindcss/typography": "catalog:tailwind",
"@testing-library/cypress": "catalog:test",
"@testing-library/jest-dom": "catalog:test",
"@testing-library/react": "catalog:test",
"@testing-library/user-event": "catalog:test",
"@types/jest": "catalog:test",
"@types/js-cookie": "catalog:",
"@types/luxon": "catalog:",
"@types/react": "catalog:react18",
"@types/react-dom": "catalog:react18",
"@types/react-relay": "catalog:graphql",
"@types/relay-runtime": "catalog:graphql",
"@types/relay-test-utils": "catalog:graphql",
"autoprefixer": "catalog:tailwind",
"babel-jest": "catalog:test",
"babel-loader": "catalog:storybook",
"babel-plugin-relay": "catalog:graphql",
"css-loader": "catalog:storybook",
"cypress": "catalog:test",
"cypress-plugin-steps": "catalog:test",
"cypress-wait-until": "catalog:test",
"dotenv": "^16.4.5",
"dotenv-cli": "^7.4.2",
"eslint-plugin-storybook": "^0.8.0",
"get-graphql-schema": "2.1.2",
"html-webpack-plugin": "5.6.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jotai": "2.9.3",
"msw": "2.6.6",
"msw-storybook-addon": "2.0.4",
"postcss": "8.4.38",
"postcss-loader": "8.1.1",
"relay-compiler": "16.2.0",
"relay-test-utils": "17.0.0",
"storybook": "8.4.7",
"style-loader": "4.0.0",
"tailwindcss": "3.4.4",
"ts-jest": "29.1.4",
"ts-node": "10.9.2",
"tsup": "8.3.6",
"typescript": "5.4.5",
"webpack": "5.93.0",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.0.4"
"eslint-plugin-storybook": "catalog:lint",
"get-graphql-schema": "catalog:graphql",
"html-webpack-plugin": "catalog:storybook",
"jest": "catalog:test",
"jest-environment-jsdom": "catalog:test",
"jotai": "catalog:",
"msw": "catalog:storybook",
"msw-storybook-addon": "catalog:storybook",
"postcss": "catalog:tailwind",
"postcss-loader": "catalog:storybook",
"relay-compiler": "catalog:graphql",
"relay-test-utils": "catalog:graphql",
"storybook": "catalog:storybook",
"style-loader": "catalog:storybook",
"tailwindcss": "catalog:tailwind",
"ts-jest": "catalog:test",
"ts-node": "catalog:test",
"tsup": "catalog:",
"typescript": "catalog:",
"webpack": "catalog:storybook",
"webpack-cli": "catalog:storybook",
"webpack-dev-server": "catalog:storybook"
},
"license": "MIT",
"repository": {
Expand Down
2 changes: 0 additions & 2 deletions packages/components/tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
"compilerOptions": {
"incremental": false,
"skipLibCheck": true,
"declaration": true,
"declarationMap": true,
"composite": false,
"outDir": "tmp-dts",
"target": "es2022"
Expand Down
32 changes: 16 additions & 16 deletions packages/config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,22 @@
],
"devDependencies": {
"@baseapp-frontend/eslint-plugin": "workspace:*",
"@emotion/eslint-plugin": "^11.11.0",
"@next/eslint-plugin-next": "^13.1.6",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.42.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^13.4.6",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.3"
"@emotion/eslint-plugin": "catalog:lint",
"@next/eslint-plugin-next": "catalog:lint",
"@trivago/prettier-plugin-sort-imports": "catalog:lint",
"@typescript-eslint/eslint-plugin": "catalog:lint",
"@typescript-eslint/parser": "catalog:lint",
"eslint": "catalog:lint",
"eslint-config-airbnb": "catalog:lint",
"eslint-config-airbnb-typescript": "catalog:lint",
"eslint-config-next": "catalog:lint",
"eslint-config-prettier": "catalog:lint",
"eslint-plugin-import": "catalog:lint",
"eslint-plugin-jsx-a11y": "catalog:lint",
"eslint-plugin-react": "catalog:lint",
"eslint-plugin-react-hooks": "catalog:lint",
"prettier": "catalog:lint",
"prettier-plugin-tailwindcss": "catalog:lint"
},
"license": "MIT",
"repository": {
Expand Down
Loading
Loading