-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 4.45 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 4.45 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "doom-index",
"version": "2.0.0",
"private": false,
"description": "A decentralized archive of financial emotions. AI generates one painting every minute, translating the collective psychology of 8 pump.fun tokens into visual art.",
"scripts": {
"postinstall": "bun run patch:opennext",
"dev": "next dev --port 8787",
"build": "next build --webpack",
"build:cf": "opennextjs-cloudflare build && bun run patch:setimmediate",
"preview": "opennextjs-cloudflare preview --test-scheduled",
"patch:opennext": "bun scripts/patch-opennext-webpack-runtime.ts",
"patch:setimmediate": "bun scripts/patch-opennext-setimmediate.ts",
"start": "next start",
"lint": "eslint . --cache --cache-location .cache/eslint/.eslintcache --cache-strategy content",
"lint:fix": "eslint . --fix --cache --cache-location .cache/eslint/.eslintcache --cache-strategy content",
"format": "oxfmt --check .",
"format:fix": "oxfmt .",
"typecheck": "tsgo --noEmit --incremental --tsBuildInfoFile .cache/tsgo/typecheck.tsbuildinfo",
"test": "bun test --env-file=.example.vars --preload=./tests/preload.ts",
"test:unit": "bun test --env-file=.example.vars --grep 'unit' --preload=./tests/preload.ts",
"test:integration": "bun test --env-file=.example.vars --grep 'integration' --preload=./tests/preload.ts",
"cf-typegen": "wrangler types --env-interface CloudflareEnv cloudflare-env.d.ts",
"generate:img": "bun --env-file=.dev.vars scripts/gen-img.ts",
"generate:framed-glb": "bun scripts/generate-framed-glb.ts",
"watch-cron": "bun scripts/watch-cron.ts",
"truncate-r2": "bun --env-file=.dev.vars scripts/truncate-r2.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "bun --env-file=.dev.vars drizzle-kit migrate",
"db:migrate:prod": "bun --env-file=.prod.vars drizzle-kit migrate",
"db:push": "bun --env-file=.dev.vars drizzle-kit push",
"db:push:prod": "bun --env-file=.prod.vars drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:studio:prod": "bun --env-file=.prod.vars drizzle-kit studio",
"upload": "bun run build:cf && opennextjs-cloudflare upload",
"deploy": "bun run build:cf && opennextjs-cloudflare deploy",
"analyze:bundle": "bun run scripts/analyze-bundle.ts",
"knip": "knip"
},
"dependencies": {
"@ardrive/turbo-sdk": "^1.41.0",
"@coingecko/coingecko-typescript": "^2.5.0",
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@next/mdx": "^16.1.6",
"@next/third-parties": "^16.1.6",
"@opennextjs/cloudflare": "^1.17.1",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"@solana/wallet-adapter-base": "^0.9.27",
"@solana/wallet-adapter-phantom": "^0.9.28",
"@solana/wallet-adapter-react": "^0.15.39",
"@solana/wallet-adapter-react-ui": "^0.9.39",
"@solana/wallet-adapter-solflare": "^0.6.32",
"@solana/web3.js": "^1.98.4",
"@t3-oss/env-nextjs": "^0.13.10",
"@tanstack/react-query": "^5.90.21",
"@tavily/core": "^0.5.14",
"@trpc/client": "^11.12.0",
"@trpc/react-query": "^11.12.0",
"@trpc/server": "^11.12.0",
"@trpc/tanstack-react-query": "^11.12.0",
"drizzle-orm": "^0.44.7",
"neverthrow": "^7.2.0",
"next": "^16.1.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"sonner": "^2.0.7",
"three": "^0.181.2",
"three-stdlib": "^2.36.1",
"use-haptic": "^1.1.13",
"use-sound": "^5.0.0",
"valibot": "^1.2.0",
"zustand": "^5.0.11"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260313.1",
"@happy-dom/global-registrator": "^20.8.4",
"@next/eslint-plugin-next": "^16.1.6",
"@posaune0423/eslint-config": "^1.3.0",
"@tailwindcss/postcss": "^4.2.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/bun": "^1.3.10",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.181.0",
"@typescript/native-preview": "^7.0.0-dev.20260314.1",
"babel-plugin-react-compiler": "^1.0.0",
"baseline-browser-mapping": "^2.10.8",
"better-sqlite3": "^12.8.0",
"drizzle-kit": "^0.31.9",
"eslint": "^9.39.4",
"knip": "^5.86.0",
"lefthook": "^2.1.4",
"leva": "^0.10.1",
"oxfmt": "^0.40.0",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3",
"wrangler": "^4.73.0"
},
"engines": {
"node": ">=24.11.1"
},
"packageManager": "bun@1.3.10"
}