forked from aldrin-labs/opensvm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
128 lines (128 loc) · 3.45 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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "turbo-seek",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest"
},
"dependencies": {
"@metaplex-foundation/js": "^0.20.1",
"@metaplex-foundation/mpl-token-metadata": "^3.3.0",
"@mozilla/readability": "^0.5.0",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-tabs": "^1.1.2",
"@solana/spl-token": "^0.4.9",
"@solana/web3.js": "^1.98.0",
"@swc/helpers": "^0.5.15",
"@types/three": "^0.172.0",
"@vercel/og": "^0.6.4",
"apache-arrow": "^13.0.0",
"bs58": "^6.0.0",
"chart.js": "^4.4.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"d3-array": "^3.2.4",
"d3-color": "^3.1.0",
"d3-ease": "^3.0.1",
"d3-interpolate": "^3.0.1",
"d3-random": "^3.0.1",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.1.0",
"d3-selection": "^3.0.0",
"d3-timer": "^3.0.1",
"d3-transition": "^3.0.1",
"d3-zoom": "^3.0.0",
"date-fns": "^4.1.0",
"deepscatter": "github:nomic-ai/deepscatter",
"encoding": "^0.1.13",
"eventsource-parser": "^1.1.2",
"framer-motion": "^11.15.0",
"glsl-easings": "^1.0.0",
"glsl-fast-gaussian-blur": "^1.0.2",
"glsl-read-float": "^1.1.0",
"html2canvas": "^1.4.1",
"jsdom": "^24.1.0",
"lodash.merge": "^4.6.2",
"lru-cache": "^11.0.2",
"lucide-react": "^0.294.0",
"next": "^15.1.3",
"next-plausible": "^3.12.4",
"next-themes": "^0.4.4",
"rbush-3d": "^0.0.4",
"react": "18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "18.2.0",
"react-hot-toast": "^2.4.1",
"react-markdown": "^9.0.1",
"regl": "^2.1.0",
"remark-gfm": "^4.0.0",
"rinlab": "^0.2.0",
"tailwind-merge": "^2.6.0",
"three": "^0.172.0",
"together-ai": "^0.6.0-alpha.3",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.23.0"
},
"devDependencies": {
"@swc/jest": "^0.2.37",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@testing-library/jest-dom": "^6.4.0",
"@testing-library/react": "^14.2.0",
"@testing-library/user-event": "^14.5.0",
"@types/connect": "^3.4.38",
"@types/jest": "^29.5.14",
"@types/jsdom": "^21.1.7",
"@types/json5": "^2.2.0",
"@types/node": "^20.17.12",
"@types/node-fetch": "^2.6.12",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/testing-library__jest-dom": "^5.14.9",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^8.57.1",
"eslint-config-next": "14.2.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.6.0",
"tailwindcss": "^3.4.1",
"typescript": "^5"
},
"jest": {
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.ts"
],
"transform": {
"^.+\\.(t|j)sx?$": [
"@swc/jest",
{
"jsc": {
"transform": {
"react": {
"runtime": "automatic"
}
}
}
}
]
},
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/$1"
},
"transformIgnorePatterns": [
"node_modules/(?!(uuid|@solana/web3.js)/)"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/.next/"
]
}
}