stack/examples/convex/package.json
BilalG1 609579abab
Some checks failed
all-good: Did all the other checks pass? / all-good (push) Has been cancelled
Ensure Prisma migrations are in sync with the schema / check_prisma_migrations (22.x) (push) Has been cancelled
DB migration compat / Check if migrations changed (push) Has been cancelled
Docker Server Build and Push / Docker Build and Push Server (push) Has been cancelled
Docker Server Build and Run / docker (push) Has been cancelled
Runs E2E API Tests (Local Emulator) / E2E Tests (Local Emulator, Node ${{ matrix.node-version }}) (22.x) (push) Has been cancelled
Runs E2E API Tests / E2E Tests (Node ${{ matrix.node-version }}, Freestyle ${{ matrix.freestyle-mode }}) (mock, 22.x) (push) Has been cancelled
Runs E2E API Tests / E2E Tests (Node ${{ matrix.node-version }}, Freestyle ${{ matrix.freestyle-mode }}) (prod, 22.x) (push) Has been cancelled
Runs E2E API Tests with custom port prefix / build (22.x) (push) Has been cancelled
Runs E2E Fallback Tests / E2E Fallback Tests (Node ${{ matrix.node-version }}) (22.x) (push) Has been cancelled
Lint & build / lint_and_build (24) (push) Has been cancelled
TOC Generator / TOC Generator (push) Has been cancelled
DB migration compat / Back-compat — Current branch migrations with ${{ needs.check-migrations-changed.outputs.base_branch }} branch code (push) Has been cancelled
DB migration compat / Forward-compat — Current branch code with ${{ needs.check-migrations-changed.outputs.base_branch }} branch migrations (push) Has been cancelled
DB migration compat / No migration changes (skipped) (push) Has been cancelled
feat(hexclave): PR 3 — native @hexclave/* source rename + delete dual-publish wiring (#1482)
2026-05-29 15:21:59 -07:00

46 lines
1.9 KiB
JSON

{
"name": "@hexclave/convex-example",
"version": "1.0.0",
"repository": "https://github.com/hexclave/hexclave",
"private": true,
"scripts": {
"convex": "convex",
"dev": "pnpm run predev && npm-run-all --parallel dev:frontend dev:backend",
"dev:frontend": "next dev --port ${NEXT_PUBLIC_HEXCLAVE_PORT_PREFIX:-81}27",
"dev:backend": "convex dev --typecheck=disable --env-file .env.development",
"dev:backend:until-success": "pnpm run dev:backend --until-success",
"set-up-env-vars": "PREFIX=${NEXT_PUBLIC_HEXCLAVE_PORT_PREFIX:-81}; wait-on http://localhost:3210 && pnpm run convex env set NEXT_PUBLIC_STACK_API_URL=http://localhost:${PREFIX}02 && pnpm run convex env set NEXT_PUBLIC_STACK_PROJECT_ID=internal && pnpm run convex env set NEXT_PUBLIC_STACK_PUBLISHABLE_CLIENT_KEY=this-publishable-client-key-is-for-local-development-only && pnpm run convex env set STACK_SECRET_SERVER_KEY=this-secret-server-key-is-for-local-development-only",
"predev": "npm-run-all --parallel dev:backend:until-success set-up-env-vars",
"start": "next start --port ${NEXT_PUBLIC_HEXCLAVE_PORT_PREFIX:-81}27",
"build": "next build",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"clean": "rimraf .next && rimraf node_modules"
},
"dependencies": {
"@hexclave/next": "workspace:*",
"@hexclave/shared": "workspace:*",
"convex": "^1.27.0",
"next": "15.5.10",
"react": "^19.0.1",
"react-dom": "^19.0.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.5",
"npm-run-all": "^4.1.5",
"postcss": "^8",
"prettier": "^3.5.3",
"rimraf": "^5.0.5",
"tailwindcss": "^4",
"typescript": "5.9.3",
"wait-on": "^8.0.1"
},
"packageManager": "pnpm@10.23.0"
}