-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.04 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 3.04 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
{
"name": "sparked-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS=\"--max-old-space-size=4096\" next dev",
"type-check": "tsc --noEmit",
"build": "tsc --noEmit && next build",
"start": "next start",
"test": "vitest run",
"test:watch": "vitest",
"lint": "npx oxlint --fix",
"pm2": "pm2 start pnpm --name \"sparked-next\" -- start"
},
"engines": {
"node": "^22.13.0 || >=24.0.0",
"pnpm": ">=9 <10"
},
"dependencies": {
"@auth/mongodb-adapter": "^3.0.0",
"@aws-sdk/client-s3": "^3.598.0",
"@headlessui/react": "^2.0.0",
"@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-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"@types/node": "24.6.1",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"@uidotdev/usehooks": "^2.4.1",
"@wojtekmaj/react-hooks": "^2.0.1",
"axios": "^1.5.0",
"bcryptjs": "^3.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"eslint": "8.57.1",
"eslint-config-next": "^16.2.1",
"i18next": "^25.4.2",
"i18next-resources-to-backend": "^1.2.1",
"jose": "^6.1.0",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^4.0.0",
"lucide-react": "^1.8.0",
"mongodb": "^6.1.0",
"next": "^16.2.1",
"next-auth": "^4.24.13",
"next-nprogress-bar": "^2.3.4",
"next-themes": "^0.4.6",
"next-video": "^2.2.0",
"pdfjs-dist": "^5.4.149",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-dropzone": "^14.2.3",
"react-i18next": "^15.0.3",
"react-icons": "^5.0.1",
"react-infinite-scroll-component": "^6.1.0",
"react-loading-skeleton": "^3.4.0",
"react-pdf": "^9.2.1",
"recharts": "^3.8.1",
"resend": "^6.0.2",
"sharp": "^0.34.0",
"swr": "^2.2.5",
"tailwind-merge": "^3.5.0",
"typescript": "5.9.3",
"zod": "^3.23.8",
"zod-form-data": "^2.0.1",
"zustand": "^5.0.8"
},
"devDependencies": {
"@playwright/test": "^1.51.0",
"@react-email/components": "^1.0.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/bcryptjs": "^2.4.6",
"@types/formidable": "^3.4.5",
"@types/jsonwebtoken": "^9.0.6",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.6.0",
"@vitejs/plugin-react": "^6.0.1",
"autoprefixer": "^10.4.15",
"eslint-config-prettier": "^9.1.0",
"jsdom": "^25.0.0",
"lint-staged": "^15.0.0",
"oxlint": "^0.16.0",
"postcss": "^8.4.28",
"tailwindcss": "^3.3.3",
"ts-node": "^10.9.2",
"vitest": "^4.1.0"
},
"resolutions": {
"undici": "^6.24.0"
},
"packageManager": "pnpm@9.15.4"
}