-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.33 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.33 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
{
"name": "kuest-auth",
"private": true,
"packageManager": "npm@11.6.2",
"description": "Generate and manage Kuest API credentials.",
"repository": {
"type": "git",
"url": "https://github.com/kuestcom/auth.git"
},
"engines": {
"node": "24.x"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --fix",
"prepare": "husky"
},
"dependencies": {
"@reown/appkit": "1.8.18",
"@reown/appkit-adapter-wagmi": "1.8.18",
"@supabase/supabase-js": "2.98.0",
"@tanstack/react-query": "5.90.21",
"lucide-react": "0.575.0",
"next": "16.1.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"viem": "2.45.1",
"wagmi": "2.19.5"
},
"devDependencies": {
"@antfu/eslint-config": "^7.6.1",
"@eslint-react/eslint-plugin": "^2.13.0",
"@next/eslint-plugin-next": "16.1.6",
"@tailwindcss/postcss": "^4.2.0",
"@types/node": "^24.10.7",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.3",
"eslint-plugin-better-tailwindcss": "^4.3.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"tailwindcss": "^4.2.0",
"typescript": "^5.9.3"
},
"lint-staged": {
"*": "eslint --fix"
}
}