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
8 changes: 4 additions & 4 deletions .github/workflows/build_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,20 @@ jobs:

steps:
- name: 'Checkout GitHub Action'
uses: actions/checkout@main
uses: actions/checkout@v6

- name: 'Login to GitHub Container Registry'
uses: docker/login-action@v1
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{github.actor}}
password: ${{secrets.ACCESS_TOKEN}}

- name: Set up QEMU
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v4

- name: 'Build and push Inventory Image'
run: |
Expand Down
1 change: 0 additions & 1 deletion .husky/commit-msg
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npx commitlint --edit $1
1 change: 0 additions & 1 deletion .husky/pre-commit
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npx lint-staged
1 change: 0 additions & 1 deletion .npmrc

This file was deleted.

6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM docker.io/node:20-alpine3.18 AS build
FROM docker.io/node:24-alpine AS build

WORKDIR /app

# Install pnpm
RUN npm install -g pnpm@latest-10
RUN npm install -g pnpm@latest-11

# Copy dependency files
COPY package.json pnpm-lock.yaml ./
COPY package.json pnpm-lock.yaml pnpm-workspace.yaml ./

# Install dependencies
RUN pnpm install --frozen-lockfile
Expand Down
5 changes: 3 additions & 2 deletions biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/2.4.15/schema.json",
"$schema": "https://biomejs.dev/schemas/2.4.16/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
Expand Down Expand Up @@ -28,7 +28,8 @@
"useSemanticElements": "off"
},
"complexity": {
"useFlatMap": "off"
"useFlatMap": "off",
"noStaticOnlyClass": "off"
},
"correctness": {
"noUndeclaredVariables": "off",
Expand Down
44 changes: 19 additions & 25 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,52 +13,46 @@
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome format --write .",
"prepare": "husky install",
"prepare": "husky",
"commit": "git-cz",
"release": "standard-version --no-verify",
"release:major": "pnpm run release --release-as major",
"release:minor": "pnpm run release --release-as minor",
"release:patch": "pnpm run release --release-as patch"
},
"dependencies": {
"@astrojs/react": "3.6.0",
"@floating-ui/react": "0.26.0",
"@formkit/auto-animate": "0.8.2",
"@radix-ui/react-checkbox": "1.1.4",
"@radix-ui/react-dropdown-menu": "2.0.6",
"@radix-ui/react-slider": "1.2.3",
"@radix-ui/react-tooltip": "1.2.8",
"@astrojs/react": "5.0.7",
"@types/howler": "2.2.10",
"@types/react": "^18.2.25",
"@types/react-dom": "^18.2.10",
"@vite-pwa/astro": "0.5.0",
"astro": "4.10.3",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@vite-pwa/astro": "1.2.0",
"astro": "6.4.4",
"deepmerge": "4.3.1",
"focus-trap-react": "10.2.3",
"framer-motion": "10.16.4",
"howler": "2.2.4",
"js-confetti": "0.12.0",
"motion": "12.23.24",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"radix-ui": "1.5.0",
"react": "19.2.7",
"react-dom": "19.2.7",
"react-hotkeys-hook": "3.2.1",
"react-icons": "4.11.0",
"react-wrap-balancer": "1.1.0",
"react-youtube": "10.1.0",
"uuid": "10.0.0",
"uuid": "14.0.0",
"zustand": "4.4.3"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@commitlint/cli": "17.7.2",
"@commitlint/config-conventional": "17.7.0",
"autoprefixer": "10.4.16",
"commitizen": "4.3.0",
"@biomejs/biome": "2.4.16",
"@commitlint/cli": "21.0.2",
"@commitlint/config-conventional": "21.0.2",
"autoprefixer": "10.5.0",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"husky": "8.0.3",
"lint-staged": "14.0.1",
"postcss-nesting": "12.0.1",
"husky": "9.1.7",
"lint-staged": "17.0.7",
"postcss-nesting": "14.0.0",
"standard-version": "9.5.0",
"workbox-window": "7.4.0"
"workbox-window": "7.4.1"
}
}
Loading