-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.89 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.89 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
{
"private": true,
"devEngines": {
"packageManager": {
"name": "npm",
"version": "11.6.2"
}
},
"scripts": {
"dev": "next dev",
"inngest:dev": "npx --ignore-scripts=false inngest-cli@latest dev",
"format:check": "prettier . --check --ignore-unknown",
"format:check-cached": "npm run format:check -- --cache --cache-strategy metadata --cache-location=node_modules/.cache/prettier",
"format:fix": "prettier . --write --ignore-unknown",
"lint:inspect": "eslint --inspect-config",
"lint:check": "eslint .",
"lint:check-cached": "npm run lint:check -- --cache --cache-location=node_modules/.cache/eslint",
"lint:fix": "eslint . --fix",
"type:check": "tsc --noEmit",
"declutter:check": "knip",
"declutter:check-cached": "npm run declutter:check -- --cache",
"spell:check": "cspell .",
"spell:check-cached": "cspell --cache --cache-strategy metadata --cache-location=node_modules/.cache/cspell .",
"build": "next build",
"start": "next start",
"prepare": "husky"
},
"dependencies": {
"@base-ui/react": "1.1.0",
"@hookform/resolvers": "5.2.2",
"@supabase/supabase-js": "2.93.3",
"@t3-oss/env-nextjs": "0.13.10",
"@tanstack/react-pacer": "0.19.4",
"@tanstack/react-query": "5.90.20",
"axios": "1.13.4",
"better-auth": "1.4.18",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"dayjs": "1.11.19",
"geist": "1.5.1",
"inngest": "3.50.0",
"lucide-react": "0.563.0",
"next": "16.1.6",
"next-themes": "0.4.6",
"nodemailer": "7.0.13",
"pg": "8.18.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-hook-form": "7.71.1",
"react-select-country-list": "2.2.3",
"react-ts-tradingview-widgets": "1.2.8",
"sonner": "2.0.7",
"tailwind-merge": "3.4.0",
"zod": "4.3.6"
},
"devDependencies": {
"@commitlint/cli": "20.4.0",
"@commitlint/config-conventional": "20.4.0",
"@commitlint/types": "20.4.0",
"@eslint-react/eslint-plugin": "2.8.4",
"@eslint/compat": "2.0.2",
"@eslint/js": "9.39.2",
"@hookform/devtools": "4.4.0",
"@next/eslint-plugin-next": "16.1.6",
"@tailwindcss/postcss": "4.1.18",
"@tanstack/eslint-plugin-query": "5.91.4",
"@tanstack/react-query-devtools": "5.91.3",
"@types/node": "24.10.9",
"@types/nodemailer": "7.0.9",
"@types/react": "19.2.10",
"@types/react-dom": "19.2.3",
"@types/react-select-country-list": "2.2.3",
"babel-plugin-react-compiler": "1.0.0",
"cspell": "9.6.2",
"eslint": "9.39.2",
"eslint-plugin-perfectionist": "5.4.0",
"eslint-plugin-zod": "3.0.2",
"husky": "9.1.7",
"knip": "5.82.1",
"lint-staged": "16.2.7",
"prettier": "3.8.1",
"prettier-plugin-tailwindcss": "0.7.2",
"tailwind-scrollbar": "4.0.2",
"tailwindcss": "4.1.18",
"tw-animate-css": "1.4.0",
"typescript": "5.9.3",
"typescript-eslint": "8.54.0"
}
}