forked from cartuhok/3d-weather-codrops
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.44 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.44 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
{
"name": "fourcast",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint -c .eslintrc.json . --ext .js,.jsx,.ts,.tsx",
"lint:next": "next lint",
"typecheck": "tsc --noEmit",
"test": "vitest --run",
"test:turso": "node scripts/test-turso-connection.js",
"test:db": "node scripts/test-db-operations.js",
"test:api": "node scripts/test-signals-api.js",
"prepare": "chmod +x scripts/*.sh && if [ -d .git/hooks ]; then cp scripts/pre-commit.sh .git/hooks/pre-commit 2>/dev/null || true; fi",
"hooks:install": "./scripts/install-hooks.sh",
"hooks:test": "./scripts/pre-commit.sh"
},
"dependencies": {
"@aptos-labs/ts-sdk": "^5.1.5",
"@aptos-labs/wallet-adapter-ant-design": "^5.3.2",
"@aptos-labs/wallet-adapter-react": "^7.2.2",
"@ethersproject/wallet": "^5.7.0",
"@farcaster/hub-web": "^0.11.7",
"@libsql/client": "^0.15.15",
"@neynar/nodejs-sdk": "^2.0.0",
"@noble/curves": "^2.0.1",
"@polymarket/clob-client": "^4.22.8",
"@react-three/drei": "^10.6.1",
"@react-three/fiber": "^9.3.0",
"@react-three/postprocessing": "^3.0.4",
"@tanstack/react-query": "^5.90.8",
"@telegram-apps/bridge": "^2.11.0",
"@vercel/og": "^0.8.5",
"@wallet-standard/core": "^1.1.1",
"aptos": "^1.22.1",
"axios": "^1.11.0",
"better-sqlite3": "^11.7.0",
"connectkit": "^1.9.1",
"dotenv": "^17.2.3",
"ethers": "^6.15.0",
"got": "^14.6.5",
"hls.js": "^1.6.15",
"leva": "^0.10.0",
"lucide-react": "^0.554.0",
"maath": "^0.10.8",
"next": "^16.1.1",
"openai": "^6.9.0",
"pino-pretty": "^13.1.2",
"postprocessing": "^6.37.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"redis": "^5.9.0",
"three": "^0.179.1",
"viem": "^2.41.2",
"wagmi": "^2.19.4",
"zustand": "5.0.9"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^13.5.0",
"@types/node": "^18.19.130",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/three": "^0.168.0",
"autoprefixer": "^10.4.21",
"eslint": "^8",
"eslint-config-next": "^16.0.3",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.17",
"typescript": "^5.1.0",
"vitest": "^2.1.3",
"web-vitals": "^2.1.4"
}
}