Files
sign/package.json

45 lines
1.3 KiB
JSON
Raw Permalink 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-06-09 18:21:18 +10:00
"start": "cd apps && cd web && next start",
"lint": "turbo run lint",
"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",
"dx": "npm i && npm run dx:up && npm run prisma:migrate-dev -w @documenso/prisma",
2023-09-30 00:47:50 +10:00
"dx:up": "docker compose -f docker/compose-services.yml up -d",
"dx:down": "docker compose -f docker/compose-services.yml down"
2023-01-09 09:43:58 +01:00
},
"engines": {
"npm": ">=8.6.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",
2023-06-09 18:21:18 +10:00
"dotenv": "^16.0.3",
"dotenv-cli": "^7.2.1",
2023-08-30 12:35:43 +10:00
"eslint": "^8.40.0",
2023-06-09 18:21:18 +10:00
"eslint-config-custom": "*",
"husky": "^8.0.0",
"lint-staged": "^14.0.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",
2023-06-09 18:21:18 +10:00
"packageManager": "npm@8.19.2",
"workspaces": [
"apps/*",
2023-08-01 17:34:17 +10:00
"packages/*"
2023-08-06 22:46:20 +00:00
],
"dependencies": {
"recharts": "^2.7.2"
}
2023-06-09 18:21:18 +10:00
}