-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.86 KB
/
package.json
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
{
"name": "business-visa-app",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --dir src",
"prepare": "husky install",
"db:introspect": "yarn drizzle-kit introspect:mysql",
"db:push": "yarn drizzle-kit push:mysql",
"db:studio": "yarn drizzle-kit studio",
"db:generate": "yarn drizzle-kit generate:mysql",
"db:drop": "yarn drizzle-kit drop"
},
"dependencies": {
"@chakra-ui/react": "^2.8.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@hookform/resolvers": "^3.1.1",
"@planetscale/database": "^1.8.0",
"@react-email/components": "^0.0.7",
"@shyft-to/js": "^0.2.17",
"@solana/wallet-adapter-react": "^0.15.33",
"@solana/wallet-adapter-react-ui": "^0.9.32",
"@solana/web3.js": "^1.78.0",
"@supabase/supabase-js": "^2.26.0",
"@t3-oss/env-nextjs": "^0.6.0",
"@tanstack/react-query": "^4.32.0",
"@tanstack/react-query-devtools": "^4.32.0",
"@upstash/qstash": "^0.3.6",
"@upstash/redis": "^1.22.0",
"@vercel/og": "^0.5.11",
"@web3auth/sign-in-with-solana": "^2.0.0",
"airtable": "^0.12.1",
"axios": "^1.4.0",
"bignumber.js": "^9.1.1",
"bs58": "^5.0.0",
"compress.js": "^1.2.2",
"date-fns": "^2.30.0",
"dotenv": "^16.3.1",
"drizzle-orm": "^0.27.2",
"file-saver": "^2.0.5",
"framer-motion": "^10.13.0",
"next": "13.4.12",
"next-auth": "^4.22.3",
"react": "18.2.0",
"react-avatar-editor": "^13.0.0",
"react-confetti-explosion": "^2.1.2",
"react-dom": "18.2.0",
"react-hook-form": "^7.45.2",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.10.1",
"react-phone-number-input": "^3.3.0",
"react-typed": "^1.2.0",
"resend": "^0.17.1",
"sharp": "^0.32.4",
"usehooks-ts": "^2.9.1",
"zod": "^3.21.4",
"zustand": "^4.3.9"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@tanstack/eslint-plugin-query": "^4.29.25",
"@types/compress.js": "^1.1.1",
"@types/file-saver": "^2.0.7",
"@types/node": "20.4.4",
"@types/react": "18.2.15",
"@types/react-avatar-editor": "^13.0.0",
"@types/react-dom": "18.2.7",
"drizzle-kit": "^0.19.10",
"eslint": "^8.45.0",
"eslint-config-next": "13.4.12",
"eslint-config-sznm": "^2.0.2",
"husky": ">=8.0.3",
"lint-staged": ">=13.2.3",
"prettier": "3.0.0",
"typescript": "5.1.6"
},
"lint-staged": {
"*.{ts,tsx,js,css,md}": "prettier --write"
}
}