-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.76 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.76 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
{
"name": "sol-squeeze",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "bun@1.3.7",
"scripts": {
"dev": "concurrently -k \"npm:dev:server\" \"npm:dev:client\"",
"dev:client": "vite",
"dev:server": "tsx watch server/index.ts",
"build": "npm run build:client && npm run build:server",
"build:client": "tsc && vite build",
"build:server": "tsc -p tsconfig.server.json",
"start": "node server-dist/index.js",
"preview": "npm run build && npm run start",
"lint": "npm run lint:client && npm run lint:server",
"lint:client": "tsc --noEmit",
"lint:server": "tsc -p tsconfig.server.json --noEmit"
},
"dependencies": {
"@radix-ui/react-avatar": "^1.1.10",
"@solana/spl-token": "^0.4.8",
"@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",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"helmet": "^8.1.0",
"lucide-react": "^0.523.0",
"react": "^18",
"react-dom": "^18",
"react-icons": "^5.5.0",
"react-window": "1.8.10",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.16",
"@types/express": "^5.0.6",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-window": "1.8.8",
"@vitejs/plugin-react": "^4",
"autoprefixer": "^10.4.21",
"concurrently": "^9.2.1",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.17",
"tsx": "^4.21.0",
"typescript": "^5",
"vite": "^6",
"vite-plugin-node-polyfills": "^0.25.0"
}
}