-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.8 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
{
"name": "stacks-wars-frontend",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --port 3000",
"dev:main": "NETWORK=main next dev --port 3000",
"build": "next build",
"start": "next start",
"lint": "eslint",
"format": "prettier --write \"**/*.{ts,tsx,css,md,json}\"",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@base-ui/react": "^1.6.0",
"@google-cloud/kms": "^5.7.0",
"@hookform/resolvers": "^5.5.7",
"@remixicon/react": "^4.9.0",
"@solana-program/token": "^0.16.0",
"@solana/kit": "^8.0.0",
"@stacks/connect": "^8.2.6",
"@stacks/encryption": "^7.5.0",
"@stacks/transactions": "^7.5.0",
"@stacks/wallet-sdk": "^7.5.0",
"@tanstack/react-query": "^5.101.4",
"better-auth": "^1.7.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"ed25519-hd-key": "^2.0.0",
"fakeout": "^1.0.74",
"next": "16.3.1",
"next-themes": "^0.4.6",
"pg": "^8.23.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-hook-form": "^7.83.0",
"resend": "^6.26.0",
"shadcn": "^4.15.0",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0",
"viem": "^2.56.3",
"zod": "^4.4.3",
"zustand": "^5.0.14"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/pg": "^8.23.1",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.3.1",
"prettier": "^3.9.6",
"prettier-plugin-tailwindcss": "^0.8.1",
"tailwindcss": "^4",
"typescript": "^5"
}
}