forked from juzybits/polymedia-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 4.25 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
{
"private": true,
"name": "sui-explorer",
"scripts": {
"build-storybook": "storybook build",
"build": "pnpm typecheck && vite build",
"clean": "rm -rf dist/ node_modules/ .turbo/ .wrangler/ storybook-static/ test-results/",
"deploy-dev": "pnpm build && wrangler pages deploy dist/ --project-name polymedia-explorer --branch dev",
"deploy-prod": "pnpm build && wrangler pages deploy dist/ --project-name polymedia-explorer --branch main",
"dev": "vite --port 3000",
"lint": "eslint src/ *.ts --report-unused-disable-directives --max-warnings 0",
"preview-storybook": "pnpm dlx serve ./storybook-static",
"preview": "pnpm build && vite preview",
"storybook": "storybook dev",
"test": "vitest run",
"tunnel": "lt --port 3000",
"typecheck": "tsc -b"
},
"dependencies": {
"@floating-ui/react": "^0.26.28",
"@fontsource-variable/inter": "^5.1.1",
"@fontsource-variable/red-hat-mono": "^5.1.1",
"@headlessui/react": "^1.7.19",
"@mysten/core": "workspace:*",
"@mysten/dapp-kit": "^0.14.49",
"@mysten/icons": "workspace:*",
"@mysten/sui": "^1.21.1",
"@mysten/ui": "workspace:*",
"@radix-ui/react-checkbox": "^1.1.3",
"@radix-ui/react-collapsible": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.5",
"@radix-ui/react-popover": "^1.1.5",
"@radix-ui/react-switch": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.2",
"@tanstack/react-query": "^5.66.0",
"@tanstack/react-query-devtools": "^5.66.0",
"@tanstack/react-table": "^8.20.6",
"@types/d3-array": "^3.2.1",
"@types/throttle-debounce": "^5.0.2",
"@visx/axis": "^3.12.0",
"@visx/curve": "^3.12.0",
"@visx/event": "^3.12.0",
"@visx/geo": "^3.12.0",
"@visx/marker": "^3.12.0",
"@visx/pattern": "^3.12.0",
"@visx/responsive": "^3.12.0",
"@visx/scale": "^3.12.0",
"@visx/shape": "^3.12.0",
"@visx/tooltip": "^3.12.0",
"bignumber.js": "^9.1.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^0.2.1",
"d3-array": "^3.2.4",
"date-fns": "^3.6.0",
"framer-motion": "^11.18.2",
"prism-react-renderer": "^1.3.5",
"prism-themes": "^1.9.0",
"prismjs": "^1.29.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.1.2",
"react-hook-form": "^7.54.2",
"react-hot-toast": "^2.5.1",
"react-resizable-panels": "^0.0.39",
"react-router-dom": "^6.29.0",
"throttle-debounce": "^5.0.2",
"topojson-client": "^3.1.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@babel/core": "^7.26.7",
"@storybook/addon-a11y": "^8.5.3",
"@storybook/addon-essentials": "^8.5.3",
"@storybook/addons": "^7.6.17",
"@storybook/react": "^8.5.3",
"@storybook/react-vite": "^8.5.3",
"@storybook/theming": "^8.5.3",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.13.1",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/topojson-client": "^3.1.5",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/ui": "^2.1.9",
"autoprefixer": "^10.4.20",
"happy-dom": "^14.12.3",
"localtunnel": "^2.0.2",
"onchange": "^7.1.0",
"postcss": "^8.5.1",
"start-server-and-test": "^2.0.10",
"storybook": "^8.5.3",
"tailwindcss": "^3.4.17",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.3",
"vite": "^5.4.14",
"vite-plugin-svgr": "^3.3.0",
"vitest": "^2.1.9",
"wrangler": "^3.107.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"type": "module",
"sideEffects": false
}