Files
sign/package.json

75 lines
2.7 KiB
JSON
Raw Normal View History

{
2023-06-09 18:21:18 +10:00
"private": true,
2023-01-09 09:43:58 +01:00
"scripts": {
2023-06-09 18:21:18 +10:00
"build": "turbo run build",
"build:web": "turbo run build --filter=@documenso/web",
2023-09-09 04:38:37 +00:00
"dev": "turbo run dev --filter=@documenso/web --filter=@documenso/marketing",
2023-11-24 16:17:54 +11:00
"start": "turbo run start --filter=@documenso/web --filter=@documenso/marketing",
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}\"",
2023-08-18 13:49:46 +05:30
"prepare": "husky install",
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 dev",
2024-03-07 20:09:29 +00:00
"dx": "npm i && npm run dx:up && npm run prisma:migrate-dev && npm run prisma:seed",
"dx:up": "docker compose -f docker/development/compose.yml up -d",
"dx:down": "docker compose -f docker/development/compose.yml down",
2024-01-04 23:40:35 +05:30
"ci": "turbo run test:e2e",
"prisma:generate": "npm run with:env -- npm run prisma:generate -w @documenso/prisma",
"prisma:migrate-dev": "npm run with:env -- npm run prisma:migrate-dev -w @documenso/prisma",
"prisma:migrate-deploy": "npm run with:env -- npm run prisma:migrate-deploy -w @documenso/prisma",
2024-05-29 14:47:33 +10:00
"prisma:migrate-reset": "npm run with:env -- npm run prisma:migrate-reset -w @documenso/prisma",
2023-11-30 18:38:54 +01:00
"prisma:seed": "npm run with:env -- npm run prisma:seed -w @documenso/prisma",
2024-03-08 02:45:22 +00:00
"prisma:studio": "npm run with:env -- npm run prisma:studio -w @documenso/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\"",
"inngest:dev": "inngest dev -u http://localhost:3000/api/jobs"
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",
"node": ">=18.0.0"
},
2023-06-09 18:21:18 +10:00
"devDependencies": {
2023-08-18 13:26:01 +05:30
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
2024-05-15 21:54:16 +10:00
"@trigger.dev/cli": "^2.3.18",
"dotenv": "^16.3.1",
"dotenv-cli": "^7.3.0",
2023-08-30 12:35:43 +10:00
"eslint": "^8.40.0",
2023-06-09 18:21:18 +10:00
"eslint-config-custom": "*",
2024-03-09 00:32:08 +05:30
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"playwright": "1.43.0",
2023-06-09 18:21:18 +10:00
"prettier": "^2.5.1",
2023-09-21 21:34:24 +10:00
"rimraf": "^5.0.1",
2023-06-09 18:21:18 +10:00
"turbo": "^1.9.3"
},
2023-08-29 16:19:56 -05:00
"name": "@documenso/root",
"workspaces": [
"apps/*",
2023-08-01 17:34:17 +10:00
"packages/*"
],
2024-01-25 10:48:20 +02:00
"dependencies": {
2024-03-15 22:26:09 +11:00
"@documenso/pdf-sign": "^0.1.0",
2024-06-14 13:53:48 +10:00
"inngest-cli": "^0.29.1",
2024-05-16 15:44:39 +10:00
"next-runtime-env": "^3.2.0",
"react": "18.2.0"
2024-01-25 10:48:20 +02:00
},
2023-12-02 09:38:24 +11:00
"overrides": {
"next-auth": {
"next": "14.0.3"
},
"next-contentlayer": {
"next": "14.0.3"
2024-05-16 15:44:39 +10:00
},
"react": "18.2.0"
2024-05-15 21:54:16 +10:00
},
"trigger.dev": {
"endpointId": "documenso-app"
}
2024-05-29 14:47:33 +10:00
}