Files
sign/package.json

42 lines
1.1 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",
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",
2023-09-27 09:51:30 +01:00
"test": "cd apps && cd web && npm run test:e2e",
2023-06-09 18:21:18 +10:00
"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-26 11:16:33 +01:00
"commitlint": "commitlint --edit",
2023-09-30 19:48:26 +01:00
"ci": "turbo run build test:e2e lint",
2023-09-21 21:34:24 +10:00
"clean": "turbo run clean && rimraf node_modules"
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
}