Skip to content

Commit 405886f

Browse files
authored
Merge pull request #143 from ssvlabs/fix/small-cleanup
fix: small cleanup
2 parents 4b66a82 + a93803c commit 405886f

File tree

5 files changed

+262
-244
lines changed

5 files changed

+262
-244
lines changed

.github/workflows/build_deploy.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
workflow_dispatch:
1212

1313
jobs:
14-
lint:
14+
build-and-deploy:
1515
runs-on: ubuntu-latest
1616

1717
env:
@@ -73,10 +73,8 @@ jobs:
7373
with:
7474
args: --acl public-read --follow-symlinks --delete
7575
env:
76-
NODE_OPTIONS: "--openssl-legacy-provider"
7776
AWS_S3_BUCKET: ${{ secrets.STAGE_AWS_S3_BUCKET }}
7877
AWS_ACCESS_KEY_ID: ${{ secrets.STAGE_AWS_SECRET_KEY_ID }}
79-
ANNOUNCEMENT: ${{ secrets.STAGE_ANNOUNCEMENT }}
8078
AWS_SECRET_ACCESS_KEY: ${{ secrets.STAGE_AWS_SECRET_ACCESS_KEY }}
8179
AWS_REGION: "us-west-2"
8280
SOURCE_DIR: "build/"

.gitignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@ next-env.d.ts
2828
*.pem
2929

3030
# debug
31-
npm-debug.log*
32-
yarn-debug.log*
33-
yarn-error.log*
3431
.pnpm-debug.log*
3532

3633
# local env files
@@ -43,3 +40,4 @@ yarn-error.log*
4340

4441
# typescript
4542
*.tsbuildinfo
43+
/.vscode/

next-env.d.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/// <reference types="next" />
2+
/// <reference types="next/image-types/global" />
3+
4+
// NOTE: This file should not be edited
5+
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

package.json

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"version": "2.0.0",
55
"type": "module",
66
"scripts": {
7-
"clean": "rimraf --glob **/node_modules **/dist **/.next pnpm-lock.yaml **/.tsbuildinfo",
7+
"clean": "rimraf --glob **/node_modules **/dist **/.next **/.tsbuildinfo",
88
"build": "next build",
99
"dev": "next dev",
1010
"start": "next start",
@@ -24,13 +24,13 @@
2424
"db:studio": "dotenv drizzle-kit studio"
2525
},
2626
"dependencies": {
27-
"@dnd-kit/core": "^6.1.0",
27+
"@dnd-kit/core": "^6.2.0",
2828
"@dnd-kit/modifiers": "^8.0.0",
2929
"@dnd-kit/sortable": "^9.0.0",
3030
"@dnd-kit/utilities": "^3.2.2",
3131
"@fontsource/manrope": "^5.1.0",
3232
"@fontsource/roboto-mono": "^5.1.0",
33-
"@hookform/resolvers": "^3.9.0",
33+
"@hookform/resolvers": "^3.9.1",
3434
"@radix-ui/react-checkbox": "^1.1.2",
3535
"@radix-ui/react-dialog": "^1.1.2",
3636
"@radix-ui/react-dropdown-menu": "^2.1.2",
@@ -44,73 +44,73 @@
4444
"@radix-ui/react-slot": "^1.1.0",
4545
"@radix-ui/react-toggle": "^1.1.0",
4646
"@radix-ui/react-toggle-group": "^1.1.0",
47-
"@radix-ui/react-tooltip": "^1.1.3",
47+
"@radix-ui/react-tooltip": "^1.1.4",
4848
"@t3-oss/env-nextjs": "^0.11.1",
4949
"@tanstack/react-query": "^5.62.3",
5050
"@tanstack/react-table": "^8.20.5",
51-
"axios": "^1.7.8",
51+
"axios": "^1.9.0",
5252
"class-variance-authority": "^0.7.0",
5353
"clsx": "^2.1.1",
54-
"cmdk": "^1.0.0",
54+
"cmdk": "^1.0.4",
5555
"copy-to-clipboard": "^3.3.3",
5656
"date-fns": "^4.1.0",
57-
"drizzle-orm": "^0.36.0",
57+
"drizzle-orm": "^0.36.4",
5858
"export-to-csv": "^1.4.0",
5959
"framer-motion": "^11.13.1",
6060
"geist": "^1.3.1",
6161
"lodash-es": "^4.17.21",
6262
"lucide-react": "^0.460.0",
63-
"nanoid": "^5.0.7",
64-
"next": "^15.0.0",
63+
"nanoid": "^5.1.5",
64+
"next": "^15.3.2",
6565
"next-themes": "^0.4.3",
66-
"nuqs": "^2.0.0",
67-
"postgres": "^3.4.4",
66+
"nuqs": "^2.2.3",
67+
"postgres": "^3.4.5",
6868
"react": "^18.3.1",
6969
"react-collapse": "^5.1.1",
7070
"react-day-picker": "^8.10.1",
7171
"react-dom": "^18.3.1",
7272
"react-error-boundary": "^5.0.0",
73-
"react-hook-form": "^7.53.1",
73+
"react-hook-form": "^7.53.2",
7474
"react-icons": "^5.4.0",
7575
"react-use": "^17.5.1",
7676
"recharts": "^2.15.0",
7777
"server-only": "^0.0.1",
78-
"sonner": "^1.5.0",
78+
"sonner": "^1.7.0",
7979
"tailwind-merge": "^2.5.4",
8080
"tailwindcss-animate": "^1.0.7",
8181
"url-join": "^5.0.0",
82-
"vaul": "^1.1.0",
82+
"vaul": "^1.1.1",
8383
"viem": "^2.21.51",
8484
"zod": "^3.23.8"
8585
},
8686
"devDependencies": {
87-
"@faker-js/faker": "^9.0.3",
88-
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
87+
"@faker-js/faker": "^9.2.0",
88+
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
8989
"@svgr/webpack": "^8.1.0",
9090
"@total-typescript/ts-reset": "^0.6.1",
91-
"@types/eslint": "^8.56.10",
91+
"@types/eslint": "^8.56.12",
9292
"@types/lodash-es": "^4.17.12",
93-
"@types/node": "^22.7.8",
94-
"@types/react": "^18.3.11",
93+
"@types/node": "^22.9.3",
94+
"@types/react": "^18.3.12",
9595
"@types/react-collapse": "^5.0.4",
9696
"@types/react-dom": "^18.3.1",
97-
"@typescript-eslint/eslint-plugin": "^8.11.0",
98-
"@typescript-eslint/parser": "^8.11.0",
97+
"@typescript-eslint/eslint-plugin": "^8.15.0",
98+
"@typescript-eslint/parser": "^8.15.0",
9999
"autoprefixer": "^10.4.20",
100-
"dotenv-cli": "^7.4.2",
101-
"drizzle-kit": "^0.28.0",
102-
"eslint": "^8.57.0",
103-
"eslint-config-next": "^15.0.0",
100+
"dotenv-cli": "^7.4.4",
101+
"drizzle-kit": "^0.28.1",
102+
"eslint": "^8.57.1",
103+
"eslint-config-next": "^15.0.3",
104104
"eslint-config-prettier": "^9.1.0",
105105
"eslint-plugin-tailwindcss": "^3.17.5",
106-
"pg": "^8.13.0",
107-
"postcss": "^8.4.47",
106+
"pg": "^8.13.1",
107+
"postcss": "^8.4.49",
108108
"prettier": "^3.3.3",
109-
"prettier-plugin-tailwindcss": "^0.6.8",
109+
"prettier-plugin-tailwindcss": "^0.6.9",
110110
"rimraf": "^6.0.1",
111-
"tailwindcss": "^3.4.14",
112-
"tsx": "^4.19.1",
113-
"typescript": "^5.6.3"
111+
"tailwindcss": "^3.4.15",
112+
"tsx": "^4.19.2",
113+
"typescript": "^5.7.2"
114114
},
115115
"ct3aMetadata": {
116116
"initVersion": "7.23.1"

0 commit comments

Comments
 (0)