-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
148 lines (148 loc) · 4.86 KB
/
package.json
File metadata and controls
148 lines (148 loc) · 4.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "dbackup",
"version": "2.6.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"type": "tsc --noEmit",
"validate": "./scripts/validate.sh",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:integration:run": "vitest run -c vitest.integration.config.ts",
"test:integration": "./scripts/run-integration-tests.sh",
"test:env:up": "docker compose -f docker-compose.test.yml up -d",
"test:env:down": "docker compose -f docker-compose.test.yml down",
"test:seed": "npx tsx scripts/seed-test-sources.ts",
"test:seed:snapshots": "npx tsx scripts/seed-storage-snapshots.ts",
"test:ui": "pnpm run test:env:up && sleep 30 && pnpm run test:seed",
"test:stress:generate": "./scripts/generate-stress-data.sh",
"test:stress": "pnpm run test:env:up && sleep 45 && pnpm run test:stress:generate",
"version:sync": "./scripts/sync-version.sh --sync-only",
"version:bump": "./scripts/sync-version.sh",
"changelog:next": "./scripts/sync-version.sh --changelog-init",
"database:deploy": "prisma migrate deploy && prisma generate",
"docs:install": "cd docs && pnpm install",
"docs:dev": "cd docs && pnpm dev",
"docs:build": "cd docs && pnpm build",
"docs:preview": "cd docs && pnpm preview",
"update:check": "pnpm outdated --recursive 2>&1"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1057.0",
"@aws-sdk/lib-storage": "^3.1057.0",
"@better-auth/passkey": "^1.6.13",
"@better-auth/sso": "^1.6.13",
"@hookform/resolvers": "^5.4.0",
"@iconify-icons/logos": "^1.2.36",
"@iconify-icons/mdi": "^1.2.48",
"@iconify-icons/simple-icons": "^1.2.74",
"@iconify/react": "^6.0.2",
"@microsoft/microsoft-graph-client": "^3.0.7",
"@prisma/client": "^6.19.3",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@scalar/api-reference-react": "^0.9.31",
"@tanstack/react-table": "^8.21.3",
"adm-zip": "^0.5.17",
"basic-ftp": "^6.0.1",
"better-auth": "^1.6.13",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"croner": "^10.0.1",
"date-fns": "^4.4.0",
"date-fns-tz": "^3.2.0",
"dropbox": "^10.34.0",
"googleapis": "^171.4.0",
"lucide-react": "^1.17.0",
"mongodb": "^7.2.0",
"mssql": "^12.5.5",
"next": "16.2.6",
"next-themes": "^0.4.6",
"node-cron": "^4.2.1",
"nodemailer": "^8.0.10",
"qrcode.react": "^4.2.0",
"radix-ui": "^1.4.3",
"rate-limiter-flexible": "^10.0.1",
"react": "19.2.6",
"react-day-picker": "^9.14.0",
"react-dom": "19.2.6",
"react-hook-form": "^7.77.0",
"recharts": "2.15.4",
"rsync": "^0.6.1",
"samba-client": "^7.2.0",
"sonner": "^2.0.7",
"ssh2": "^1.17.0",
"ssh2-sftp-client": "^12.1.1",
"tailwind-merge": "^3.6.0",
"tailwindcss-animate": "^1.0.7",
"tar-stream": "^3.2.0",
"webdav": "^5.10.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/adm-zip": "^0.5.8",
"@types/mssql": "^9.1.11",
"@types/node": "^20.19.37",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^7.0.11",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@types/ssh2": "^1.15.5",
"@types/ssh2-sftp-client": "^9.0.6",
"@types/tar-stream": "^3.1.4",
"@vitejs/plugin-react": "^5.2.0",
"@vitest/coverage-v8": "^4.1.7",
"eslint": "^9.39.4",
"eslint-config-next": "16.2.6",
"jsdom": "^29.1.1",
"prisma": "^6.19.3",
"tailwindcss": "^4.3.0",
"typescript": "^5.9.3",
"vite": "^7.3.2",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.7",
"vitest-mock-extended": "^3.1.1"
},
"pnpm": {
"overrides": {
"dompurify": ">=3.4.0",
"postcss": ">=8.5.10",
"fast-xml-builder": "^1.2.0",
"brace-expansion@5": "5.0.6",
"qs": "^6.15.2",
"uuid": "^11.1.1",
"kysely": "0.28.17"
},
"onlyBuiltDependencies": [
"@prisma/client",
"@prisma/engines",
"better-sqlite3",
"esbuild",
"prisma",
"sharp",
"unrs-resolver"
]
}
}