mirror of
https://github.com/documenso/documenso.git
synced 2025-11-09 20:12:31 +10:00
52 lines
1.8 KiB
JSON
52 lines
1.8 KiB
JSON
{
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "turbo run build",
|
|
"build:web": "turbo run build --filter=@documenso/web",
|
|
"dev": "turbo run dev --filter=@documenso/web --filter=@documenso/marketing",
|
|
"start": "cd apps && cd web && next start",
|
|
"lint": "turbo run lint",
|
|
"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",
|
|
"dx:up": "docker compose -f docker/compose-services.yml up -d",
|
|
"dx:down": "docker compose -f docker/compose-services.yml down",
|
|
"ci": "turbo run build 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:studio": "npm run with:env -- npx prisma studio --schema packages/prisma/schema.prisma",
|
|
"with:env": "dotenv -e .env -e .env.local --",
|
|
"reset:hard": "npm run clean && npm i && npm run prisma:generate"
|
|
},
|
|
"engines": {
|
|
"npm": ">=8.6.0",
|
|
"node": ">=18.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^17.7.1",
|
|
"@commitlint/config-conventional": "^17.7.0",
|
|
"dotenv": "^16.3.1",
|
|
"dotenv-cli": "^7.3.0",
|
|
"eslint": "^8.40.0",
|
|
"eslint-config-custom": "*",
|
|
"husky": "^8.0.0",
|
|
"lint-staged": "^14.0.0",
|
|
"prettier": "^2.5.1",
|
|
"rimraf": "^5.0.1",
|
|
"turbo": "^1.9.3"
|
|
},
|
|
"name": "@documenso/root",
|
|
"packageManager": "npm@8.19.2",
|
|
"workspaces": [
|
|
"apps/*",
|
|
"packages/*"
|
|
],
|
|
"dependencies": {
|
|
"recharts": "^2.7.2"
|
|
}
|
|
}
|