forked from code100x/tiplink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.12 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
{
"name": "tiplink",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:docker": "npm run db:push & next dev",
"db:push": "npx prisma db push",
"db:generate": "npx prisma generate",
"db:studio": "npx prisma studio",
"db:migrate": "npx prisma migrate dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write .",
"ts": "tsc --noEmit",
"typecheck": "tsc --pretty --noEmit",
"format:fix": "prettier --write \"**/*.{ts,tsx,json,scss,css}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,scss,css}\"",
"postinstall": "prisma generate"
},
"dependencies": {
"@aws-crypto/client-node": "^4.0.1",
"@google-cloud/kms": "^4.5.0",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.17.0",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@solana/wallet-adapter-react": "^0.15.35",
"@solana/wallet-adapter-react-ui": "^0.9.35",
"@solana/wallet-adapter-wallets": "^0.19.32",
"@solana/web3.js": "^1.95.2",
"@types/bs58": "^4.0.4",
"@types/qrcode.react": "^1.0.5",
"aws-sdk": "^2.1691.0",
"axios": "^1.7.7",
"bs58": "^4.0.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"ed25519": "^0.0.5",
"framer-motion": "^11.3.21",
"lucide-react": "^0.419.0",
"next": "14.2.5",
"next-auth": "^4.24.7",
"nextjs-toploader": "^1.6.12",
"pino-pretty": "^11.2.2",
"qrcode.react": "^4.0.1",
"react": "^18",
"react-dom": "^18",
"react-icons": "^5.2.1",
"react-wrap-balancer": "^1.1.1",
"shamir-secret-sharing": "^0.0.3",
"tailwind-merge": "^2.4.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.5",
"husky": "^9.1.4",
"postcss": "^8",
"prettier": "^3.3.3",
"prisma": "^5.17.0",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}