-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 867 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 867 Bytes
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
{
"name": "eventlens",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@supabase/supabase-js": "^2.99.0",
"jszip": "^3.10.1",
"next": "^15",
"react": "19.2.6",
"react-dom": "19.2.6",
"sharp": "^0.34.5"
},
"pnpm": {
"overrides": {
"react": "19.2.6",
"react-dom": "19.2.6"
}
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "^15",
"jest": "^29.7.0",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.4.6",
"typescript": "^5"
}
}