documenso/apps/web/package.json

66 lines
1.6 KiB
JSON
Raw Normal View History

2022-11-14 22:12:51 +00:00
{
2023-01-07 14:45:03 +00:00
"name": "@documenso/web",
2022-11-14 22:12:51 +00:00
"version": "0.1.0",
"private": true,
2023-06-09 08:21:18 +00:00
"license": "AGPL-3.0",
2022-11-14 22:12:51 +00:00
"scripts": {
2023-08-23 22:56:12 +00:00
"dev": "next dev -p 3000",
2022-11-14 22:12:51 +00:00
"build": "next build",
2023-06-09 08:21:18 +00:00
"start": "next start",
"lint": "next lint",
2023-11-14 09:01:45 +00:00
"lint:fix": "next lint --fix",
2023-09-21 11:34:24 +00:00
"clean": "rimraf .next && rimraf node_modules",
"copy:pdfjs": "node ../../scripts/copy-pdfjs.cjs"
2022-11-14 22:12:51 +00:00
},
"dependencies": {
"@documenso/assets": "*",
2023-08-30 06:36:22 +00:00
"@documenso/ee": "*",
"@documenso/lib": "*",
"@documenso/prisma": "*",
2023-06-09 08:21:18 +00:00
"@documenso/tailwind-config": "*",
"@documenso/trpc": "*",
2023-02-02 17:24:23 +00:00
"@documenso/ui": "*",
2023-06-09 08:21:18 +00:00
"@hookform/resolvers": "^3.1.0",
"@tanstack/react-query": "^4.29.5",
"formidable": "^2.1.1",
"framer-motion": "^10.12.8",
"lucide-react": "^0.279.0",
2023-08-07 13:10:27 +00:00
"luxon": "^3.4.0",
2023-06-09 08:21:18 +00:00
"micro": "^10.0.1",
2023-12-01 22:38:24 +00:00
"next": "14.0.3",
"next-auth": "4.24.5",
2023-08-01 07:34:17 +00:00
"next-plausible": "^3.10.1",
2023-06-11 05:50:19 +00:00
"next-themes": "^0.2.1",
2023-06-09 08:21:18 +00:00
"perfect-freehand": "^1.2.0",
2023-08-18 10:05:14 +00:00
"posthog-js": "^1.75.3",
"posthog-node": "^3.1.1",
2022-11-14 22:12:51 +00:00
"react": "18.2.0",
"react-dom": "18.2.0",
2023-06-09 08:21:18 +00:00
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.43.9",
"react-hotkeys-hook": "^4.4.1",
"react-icons": "^4.11.0",
"react-rnd": "^10.4.1",
2023-08-28 02:14:15 +00:00
"sharp": "0.32.5",
2023-08-17 09:56:18 +00:00
"ts-pattern": "^5.0.5",
"typescript": "5.2.2",
"uqr": "^0.1.2",
"zod": "^3.22.4"
2022-11-15 09:53:04 +00:00
},
"devDependencies": {
2023-06-09 08:21:18 +00:00
"@types/formidable": "^2.0.6",
2023-08-07 13:10:27 +00:00
"@types/luxon": "^3.3.1",
2023-06-09 08:21:18 +00:00
"@types/node": "20.1.0",
2023-08-01 07:34:17 +00:00
"@types/react": "18.2.18",
"@types/react-dom": "18.2.7"
2023-12-01 22:38:24 +00:00
},
"overrides": {
"next-auth": {
"next": "$next"
},
"next-contentlayer": {
"next": "$next"
}
2022-11-14 22:12:51 +00:00
}
}