-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 826 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 826 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
{
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --coverage --watchAll=false --ci",
"lint": "echo 'No linting configured'",
"type-check": "echo 'No TypeScript configured'"
},
"dependencies": {
"@supabase/supabase-js": "^2.56.0",
"@vercel/analytics": "^1.5.0",
"elliptic": "^6.6.1",
"next": "^15.5.0",
"random-words": "^2.0.1",
"react": "^19.1.1",
"react-dom": "^19.1.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"jest": "^30.0.5",
"jest-environment-jsdom": "^30.0.5",
"jest-junit": "^16.0.0"
}
}