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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
name: Migration Drift Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: ./.github/actions/setup-node
- name: Check for schema drift
run: pnpm exec prisma migrate diff --from-schema-datamodel
Expand All @@ -30,7 +30,7 @@ jobs:
name: Lint & Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: ./.github/actions/setup-node
- uses: ./.github/actions/turbo-cache
- name: Build internal packages
Expand All @@ -46,7 +46,7 @@ jobs:
name: Type Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: ./.github/actions/setup-node
- uses: ./.github/actions/turbo-cache
- name: Build internal packages
Expand All @@ -58,7 +58,7 @@ jobs:
name: Security Audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: ./.github/actions/setup-node
- name: Audit dependencies
run: pnpm audit --audit-level=moderate
Expand All @@ -84,7 +84,7 @@ jobs:
--health-cmd pg_isready --health-interval 10s --health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: ./.github/actions/setup-node
- uses: ./.github/actions/turbo-cache
- name: Build internal packages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- uses: ./.github/actions/setup-node

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prisma-migrate-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: Apply Prisma migrations to Supabase
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: ./.github/actions/setup-node

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
security-events: write
steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
Expand Down
8 changes: 4 additions & 4 deletions apps/api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ FROM node:24-alpine AS base
WORKDIR /app
RUN npm install -g npm@latest && \
mkdir -p /tmp/patch && cd /tmp/patch && npm init -y && \
npm install brace-expansion@^5.0.6 && \
cp -r node_modules/brace-expansion /usr/local/lib/node_modules/npm/node_modules/ && \
npm install brace-expansion@^5.0.6 undici@^6.27.0 && \
cp -r node_modules/brace-expansion node_modules/undici /usr/local/lib/node_modules/npm/node_modules/ && \
rm -rf /tmp/patch
COPY package.json /tmp/package.json
RUN corepack enable && \
Expand Down Expand Up @@ -43,8 +43,8 @@ FROM node:24-alpine AS runner
WORKDIR /app
RUN npm install -g npm@latest && \
mkdir -p /tmp/patch && cd /tmp/patch && npm init -y && \
npm install brace-expansion@^5.0.6 && \
cp -r node_modules/brace-expansion /usr/local/lib/node_modules/npm/node_modules/ && \
npm install brace-expansion@^5.0.6 undici@^6.27.0 && \
cp -r node_modules/brace-expansion node_modules/undici /usr/local/lib/node_modules/npm/node_modules/ && \
rm -rf /tmp/patch

ENV NODE_ENV=production
Expand Down
14 changes: 7 additions & 7 deletions apps/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,16 +67,16 @@
"dotenv": "^17.4.2",
"express": "^5.2.1",
"express-rate-limit": "^8.5.1",
"google-auth-library": "^10.7.0",
"google-auth-library": "^10.9.0",
"helmet": "^8.2.0",
"ioredis": "5.10.1",
"ioredis": "5.11.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "9.6.3",
"openai": "^6.42.0",
"mongoose": "9.7.2",
"openai": "^6.45.0",
"pino": "10.3.1",
"prisma": "^6.19.3",
"rate-limit-redis": "5.0.0",
"stripe": "^22.2.1",
"stripe": "^22.3.0",
"swagger-jsdoc": "^6.3.0",
"swagger-ui-express": "^5.0.1",
"zod": "^4.3.6"
Expand All @@ -93,10 +93,10 @@
"@types/supertest": "^7.2.0",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"concurrently": "^9.2.1",
"concurrently": "^10.0.3",
"dotenv-cli": "^11.0.0",
"jest": "^29.7.0",
"nock": "^14.0.11",
"nock": "^14.0.16",
"nodemon": "^3.1.10",
"pino-pretty": "13.1.3",
"rimraf": "^6.0.1",
Expand Down
8 changes: 4 additions & 4 deletions apps/bot/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ FROM node:24-alpine AS base
WORKDIR /app
RUN npm install -g npm@latest && \
mkdir -p /tmp/patch && cd /tmp/patch && npm init -y && \
npm install brace-expansion@^5.0.6 && \
cp -r node_modules/brace-expansion /usr/local/lib/node_modules/npm/node_modules/ && \
npm install brace-expansion@^5.0.6 undici@^6.27.0 && \
cp -r node_modules/brace-expansion node_modules/undici /usr/local/lib/node_modules/npm/node_modules/ && \
rm -rf /tmp/patch
COPY package.json /tmp/package.json
RUN corepack enable && \
Expand Down Expand Up @@ -40,8 +40,8 @@ FROM node:24-alpine AS runner
WORKDIR /app
RUN npm install -g npm@latest && \
mkdir -p /tmp/patch && cd /tmp/patch && npm init -y && \
npm install brace-expansion@^5.0.6 && \
cp -r node_modules/brace-expansion /usr/local/lib/node_modules/npm/node_modules/ && \
npm install brace-expansion@^5.0.6 undici@^6.27.0 && \
cp -r node_modules/brace-expansion node_modules/undici /usr/local/lib/node_modules/npm/node_modules/ && \
rm -rf /tmp/patch

ENV NODE_ENV=production
Expand Down
4 changes: 2 additions & 2 deletions apps/bot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@
"@grammyjs/conversations": "^2.1.0",
"dotenv": "^17.4.2",
"grammy": "^1.44.0",
"ioredis": "5.10.1",
"ioredis": "5.11.1",
"pino": "10.3.1"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^24.3.1",
"concurrently": "^9.2.1",
"concurrently": "^10.0.3",
"dotenv-cli": "^11.0.0",
"jest": "^29.7.0",
"nodemon": "^3.1.10",
Expand Down
8 changes: 4 additions & 4 deletions apps/web/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ FROM node:24-alpine AS base
WORKDIR /app
RUN npm install -g npm@latest && \
mkdir -p /tmp/patch && cd /tmp/patch && npm init -y && \
npm install brace-expansion@^5.0.6 && \
cp -r node_modules/brace-expansion /usr/local/lib/node_modules/npm/node_modules/ && \
npm install brace-expansion@^5.0.6 undici@^6.27.0 && \
cp -r node_modules/brace-expansion node_modules/undici /usr/local/lib/node_modules/npm/node_modules/ && \
rm -rf /tmp/patch
COPY package.json /tmp/package.json
RUN corepack enable && \
Expand Down Expand Up @@ -43,8 +43,8 @@ FROM node:24-alpine AS runner
WORKDIR /app
RUN npm install -g npm@latest && \
mkdir -p /tmp/patch && cd /tmp/patch && npm init -y && \
npm install brace-expansion@^5.0.6 && \
cp -r node_modules/brace-expansion /usr/local/lib/node_modules/npm/node_modules/ && \
npm install brace-expansion@^5.0.6 undici@^6.27.0 && \
cp -r node_modules/brace-expansion node_modules/undici /usr/local/lib/node_modules/npm/node_modules/ && \
rm -rf /tmp/patch
ENV NODE_ENV=production
ENV NEXT_TELEMETRY_DISABLED=1
Expand Down
20 changes: 10 additions & 10 deletions apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
"dependencies": {
"@auth/prisma-adapter": "^2.11.1",
"@fintrack/types": "workspace:*",
"@tanstack/react-query": "^5.101.0",
"@tanstack/react-query-devtools": "^5.101.0",
"axios": "^1.17.0",
"@tanstack/react-query": "^5.101.1",
"@tanstack/react-query-devtools": "^5.101.1",
"axios": "^1.18.1",
"chart.js": "^4.5.0",
"framer-motion": "^12.40.0",
"i18next": "^26.3.1",
"framer-motion": "^12.42.0",
"i18next": "^26.3.3",
"i18next-browser-languagedetector": "^8.2.1",
"leaflet": "^1.9.4",
"next": "^16.2.9",
Expand All @@ -49,14 +49,14 @@
"@types/node": "^25.5.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^6.0.1",
"@vitejs/plugin-react": "^6.0.3",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.6.0",
"globals": "^17.7.0",
"jsdom": "^29.0.2",
"postcss": "^8.5.15",
"postcss": "^8.5.16",
"typescript": "~6.0.3",
"typescript-eslint": "^8.61.0",
"vite": "^8.0.16",
"typescript-eslint": "^8.62.0",
"vite": "^8.1.0",
"vitest": "^4.1.8"
},
"optionalDependencies": {
Expand Down
20 changes: 6 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,33 +121,25 @@
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"doctoc": "2.4.1",
"doctoc": "2.5.0",
"eslint": "^9.30.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.6.0",
"globals": "^17.7.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"lint-staged": "^17.0.8",
"next": "^16.2.9",
"prettier": "^3.8.4",
"turbo": "^2.9.17",
"turbo": "^2.10.0",
"typescript": "6.0.3",
"typescript-eslint": "^8.61.0"
"typescript-eslint": "^8.62.0"
},
"optionalDependencies": {
"@rolldown/binding-linux-x64-gnu": "*",
"@rolldown/binding-linux-x64-musl": "*",
"@rollup/rollup-linux-x64-gnu": "^4.62.0",
"@rollup/rollup-linux-x64-gnu": "^4.62.2",
"@tailwindcss/oxide-linux-x64-gnu": "*",
"lightningcss-linux-x64-gnu": "*"
},
"pnpm": {
"overrides": {
"shell-quote@<1.8.4": "1.8.4",
"uuid@<11.1.1": "11.1.1",
"js-yaml@3": "4.2.0",
"postcss@<8.5.15": "8.5.15"
}
}
}
Loading
Loading