Files
esign/package.json
T

111 lines
4.2 KiB
JSON
Raw Normal View History

{
2023-06-09 18:21:18 +10:00
"private": true,
"name": "@hanzo/esign-root",
2025-11-22 20:28:20 +11:00
"workspaces": [
"apps/*",
"packages/*"
],
2026-03-05 15:16:45 +11:00
"version": "2.7.1",
2023-01-09 09:43:58 +01:00
"scripts": {
"postinstall": "patch-package",
2023-06-09 18:21:18 +10:00
"build": "turbo run build",
"dev": "npm run translate:compile && turbo run dev --filter=@hanzo/esign-remix",
"dev:remix": "npm run translate:compile && turbo run dev --filter=@hanzo/esign-remix",
"dev:docs": "turbo run dev --filter=@hanzo/esign-documentation",
"dev:openpage-api": "turbo run dev --filter=@hanzo/esign-openpage-api",
"start": "turbo run start --filter=@hanzo/esign-remix --filter=@hanzo/esign-documentation --filter=@hanzo/esign-openpage-api",
2023-06-09 18:21:18 +10:00
"lint": "turbo run lint",
2023-11-14 14:31:45 +05:30
"lint:fix": "turbo run lint:fix",
"format": "prettier --write \"**/*.{js,jsx,cjs,mjs,ts,tsx,cts,mts,mdx}\"",
2025-02-14 14:53:01 +11:00
"prepare": "husky && husky install || true",
2023-09-21 21:34:24 +10:00
"commitlint": "commitlint --edit",
2023-09-30 00:43:45 +10:00
"clean": "turbo run clean && rimraf node_modules",
"d": "npm run dx && npm run translate:compile && npm run dev",
"dx": "npm ci && npm run dx:up && npm run prisma:migrate-dev && npm run prisma:seed",
2024-03-06 15:46:51 +11:00
"dx:up": "docker compose -f docker/development/compose.yml up -d",
"dx:down": "docker compose -f docker/development/compose.yml down",
"ci": "turbo run build --filter=@hanzo/esign-remix && turbo run test:e2e",
"prisma:generate": "npm run with:env -- npm run prisma:generate -w @hanzo/esign-prisma",
"prisma:migrate-dev": "npm run with:env -- npm run prisma:migrate-dev -w @hanzo/esign-prisma",
"prisma:migrate-deploy": "npm run with:env -- npm run prisma:migrate-deploy -w @hanzo/esign-prisma",
"prisma:migrate-reset": "npm run with:env -- npm run prisma:migrate-reset -w @hanzo/esign-prisma",
"prisma:seed": "npm run with:env -- npm run prisma:seed -w @hanzo/esign-prisma",
"prisma:studio": "npm run with:env -- npm run prisma:studio -w @hanzo/esign-prisma",
"with:env": "dotenv -e .env -e .env.local --",
"reset:hard": "npm run clean && npm i && npm run prisma:generate",
2024-05-15 21:54:16 +10:00
"precommit": "npm install && git add package.json package-lock.json",
2024-06-21 14:22:22 +10:00
"trigger:dev": "npm run with:env -- npx trigger-cli dev --handler-path=\"/api/jobs\"",
2024-07-19 13:27:01 +10:00
"inngest:dev": "inngest dev -u http://localhost:3000/api/jobs",
"make:version": "npm version --workspace @hanzo/esign-remix --include-workspace-root --no-git-tag-version -m \"v%s\"",
"openapi:merge": "tsx scripts/merge-openapi.ts",
2024-12-31 17:20:58 +11:00
"translate": "npm run translate:extract && npm run translate:compile",
"translate:extract": "lingui extract --clean",
2024-12-31 17:20:58 +11:00
"translate:compile": "lingui compile"
2023-01-09 09:43:58 +01:00
},
2024-06-21 13:07:30 +10:00
"packageManager": "npm@10.7.0",
"engines": {
2024-06-21 13:07:30 +10:00
"npm": ">=10.7.0",
2025-01-02 15:33:37 +11:00
"node": ">=22.0.0"
},
2023-06-09 18:21:18 +10:00
"devDependencies": {
2025-11-22 20:28:20 +11:00
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@lingui/cli": "^5.6.0",
"@prisma/client": "^6.19.0",
2025-11-12 11:00:44 +11:00
"@ts-rest/core": "^3.52.1",
"@ts-rest/open-api": "^3.52.1",
"@ts-rest/serverless": "^3.52.1",
2025-11-22 20:28:20 +11:00
"dotenv": "^17.2.3",
"dotenv-cli": "^11.0.0",
"eslint": "^8.57.0",
"husky": "^9.1.7",
2026-01-27 15:52:34 +11:00
"inngest-cli": "^1.16.1",
2025-11-22 20:28:20 +11:00
"lint-staged": "^16.2.7",
"nanoid": "^5.1.6",
"nodemailer": "^7.0.10",
"pdfjs-dist": "5.4.296",
2025-11-22 20:28:20 +11:00
"pino": "^9.14.0",
"pino-pretty": "^13.1.2",
"playwright": "1.56.1",
"prettier": "^3.6.2",
"prisma": "^6.19.0",
2025-05-22 14:30:22 +10:00
"prisma-extension-kysely": "^3.0.0",
2025-11-07 14:17:52 +11:00
"prisma-json-types-generator": "^3.6.2",
2026-01-27 15:52:34 +11:00
"prisma-kysely": "^2.3.0",
2025-11-22 20:28:20 +11:00
"rimraf": "^6.1.2",
2025-11-07 14:17:52 +11:00
"superjson": "^2.2.5",
2025-11-22 20:28:20 +11:00
"syncpack": "^14.0.0-alpha.27",
"turbo": "^1.13.4",
"vite": "^7.2.4",
2025-11-12 11:00:44 +11:00
"vite-plugin-static-copy": "^3.1.4",
2025-11-07 14:17:52 +11:00
"zod-openapi": "^4.2.4",
2025-11-12 11:00:44 +11:00
"zod-prisma-types": "3.3.5"
2023-06-09 18:21:18 +10:00
},
2024-01-25 10:48:20 +02:00
"dependencies": {
"@ai-sdk/google-vertex": "3.0.81",
"@hanzo/esign-prisma": "*",
2026-03-06 10:08:58 +11:00
"@libpdf/core": "^0.2.12",
2025-11-22 20:28:20 +11:00
"@lingui/conf": "^5.6.0",
"@lingui/core": "^5.6.0",
"ai": "^5.0.104",
"cron-parser": "^5.5.0",
2025-11-22 20:28:20 +11:00
"luxon": "^3.7.2",
"patch-package": "^8.0.1",
"@hanzo/insights-node": "^5.26.2",
2024-12-18 15:01:57 +11:00
"react": "^18",
"typescript": "5.9.3",
"zod": "^3.25.76",
"ws": "^8.18.0"
2024-01-25 10:48:20 +02:00
},
2023-12-02 09:38:24 +11:00
"overrides": {
2026-02-26 14:17:08 +11:00
"lodash": "4.17.23",
"pdfjs-dist": "5.4.296",
"typescript": "5.9.3",
2026-02-27 22:05:27 +11:00
"zod": "$zod",
"fumadocs-mdx": {
"zod": "^4.3.5"
},
"ws": "^8.18.0"
2023-11-06 14:47:46 +11:00
}
}