mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 07:43:16 +10:00
Adds the documenso favicon and touch icon to the documentation website keeping it on brand with our other websites and applications.
80 lines
3.0 KiB
JSON
80 lines
3.0 KiB
JSON
{
|
|
"private": true,
|
|
"version": "1.6.0-rc.3",
|
|
"scripts": {
|
|
"build": "turbo run build",
|
|
"build:web": "turbo run build --filter=@documenso/web",
|
|
"dev": "turbo run dev --filter=@documenso/web",
|
|
"dev:web": "turbo run dev --filter=@documenso/web",
|
|
"dev:marketing": "turbo run dev --filter=@documenso/marketing",
|
|
"dev:docs": "turbo run dev --filter=@documenso/documentation",
|
|
"start": "turbo run start --filter=@documenso/web --filter=@documenso/marketing --filter=@documenso/documentation",
|
|
"lint": "turbo run lint",
|
|
"lint:fix": "turbo run lint:fix",
|
|
"format": "prettier --write \"**/*.{js,jsx,cjs,mjs,ts,tsx,cts,mts,mdx}\"",
|
|
"prepare": "husky install",
|
|
"commitlint": "commitlint --edit",
|
|
"clean": "turbo run clean && rimraf node_modules",
|
|
"d": "npm run dx && npm run dev",
|
|
"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",
|
|
"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",
|
|
"prisma:migrate-reset": "npm run with:env -- npm run prisma:migrate-reset -w @documenso/prisma",
|
|
"prisma:seed": "npm run with:env -- npm run prisma:seed -w @documenso/prisma",
|
|
"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",
|
|
"precommit": "npm install && git add package.json package-lock.json",
|
|
"trigger:dev": "npm run with:env -- npx trigger-cli dev --handler-path=\"/api/jobs\"",
|
|
"inngest:dev": "inngest dev -u http://localhost:3000/api/jobs",
|
|
"make:version": " npm version --workspace @documenso/web --workspace @documenso/marketing --include-workspace-root --no-git-tag-version -m \"v%s\""
|
|
},
|
|
"packageManager": "npm@10.7.0",
|
|
"engines": {
|
|
"npm": ">=10.7.0",
|
|
"node": ">=18.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^17.7.1",
|
|
"@commitlint/config-conventional": "^17.7.0",
|
|
"@trigger.dev/cli": "^2.3.18",
|
|
"dotenv": "^16.3.1",
|
|
"dotenv-cli": "^7.3.0",
|
|
"eslint": "^8.40.0",
|
|
"eslint-config-custom": "*",
|
|
"husky": "^9.0.11",
|
|
"lint-staged": "^15.2.2",
|
|
"playwright": "1.43.0",
|
|
"prettier": "^2.5.1",
|
|
"rimraf": "^5.0.1",
|
|
"turbo": "^1.9.3"
|
|
},
|
|
"name": "@documenso/root",
|
|
"workspaces": [
|
|
"apps/*",
|
|
"packages/*"
|
|
],
|
|
"dependencies": {
|
|
"@documenso/pdf-sign": "^0.1.0",
|
|
"inngest-cli": "^0.29.1",
|
|
"next-runtime-env": "^3.2.0",
|
|
"react": "18.2.0"
|
|
},
|
|
"overrides": {
|
|
"next-auth": {
|
|
"next": "14.0.3"
|
|
},
|
|
"next-contentlayer": {
|
|
"next": "14.0.3"
|
|
},
|
|
"react": "18.2.0"
|
|
},
|
|
"trigger.dev": {
|
|
"endpointId": "documenso-app"
|
|
}
|
|
}
|