-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #74 from hypercerts-org/develop
Develop into main
- Loading branch information
Showing
77 changed files
with
2,382 additions
and
1,301 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# The port the server will run on | ||
PORT=4001 | ||
|
||
# The chain ID of the | ||
CHAIN_ID=11155111 | ||
ALCHEMY_API_KEY=mock_alchemy_api_key | ||
SUPABASE_DB_URL=http://localhost:54321 | ||
SUPABASE_SERVICE_API_KEY=test | ||
BATCH_SIZE=10000 | ||
DELAY=5000 | ||
SENTRY_DSN="test" | ||
SENTRY_ENVIRONMENT=testing | ||
SENTRY_AUTH_TOKEN="test" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ | |
"start": "node -r dotenv/config dist/server.js", | ||
"lint": "next lint", | ||
"test": "vitest", | ||
"test:coverage": "vitest --coverage", | ||
"reset:supabase:local": "npx supabase db reset", | ||
"update:sentry:sourcemaps": "npx @sentry/wizard@latest -i sourcemaps", | ||
"update:supabase:types": "npx supabase gen types typescript --local > src/types/database-generated.types.ts" | ||
|
@@ -18,6 +19,7 @@ | |
"license": "ISC", | ||
"type": "module", | ||
"devDependencies": { | ||
"@anatine/zod-mock": "^3.13.4", | ||
"@eslint/js": "^8.57.0", | ||
"@faker-js/faker": "^8.4.1", | ||
"@rollup/plugin-alias": "^5.1.0", | ||
|
@@ -44,11 +46,13 @@ | |
"rollup-plugin-polyfill-node": "^0.13.0", | ||
"sinon": "^17.0.1", | ||
"supertest": "^6.3.4", | ||
"ts-mockito": "^2.6.1", | ||
"tsx": "^4.7.1", | ||
"typescript": "^5.3.3", | ||
"typescript-eslint": "^7.0.2", | ||
"vite-tsconfig-paths": "^4.3.1", | ||
"vitest": "^1.3.1" | ||
"vitest": "^1.3.1", | ||
"vitest-mock-extended": "^1.3.1" | ||
}, | ||
"dependencies": { | ||
"@hypercerts-org/sdk": "^1.4.3", | ||
|
@@ -65,7 +69,7 @@ | |
"lodash": "^4.17.21", | ||
"luxon": "^3.4.4", | ||
"type-fest": "^4.10.3", | ||
"viem": "^2.9.19", | ||
"viem": "^2.13.5", | ||
"zod": "^3.23.6" | ||
}, | ||
"packageManager": "[email protected]" | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.