-
-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.1 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 3.1 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
{
"name": "metagraphed-ui",
"version": "1.1.0",
"private": true,
"license": "AGPL-3.0-or-later",
"sideEffects": false,
"type": "module",
"engines": {
"node": ">=22.23.1"
},
"scripts": {
"postinstall": "fumadocs-mdx",
"build:client": "cd ../../packages/client && npm run build",
"dev": "vite dev",
"build": "NODE_OPTIONS=--max-old-space-size=4096 vite build",
"build:worker": "LOVABLE_SANDBOX=1 NITRO_PRESET=cloudflare-module npm run build",
"build:worker:e2e": "VITE_METAGRAPH_API_BASE=http://127.0.0.1:8081 VITE_ICON_PROXY_URL=http://127.0.0.1:8081/api/v1/icon npm run build:worker",
"build:dev": "vite build --mode development",
"preview": "vite preview",
"lint": "eslint . --cache",
"pretypecheck": "npm run build:client",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check --cache --cache-location .prettiercache .",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:update-baseline": "node tests/e2e/generate-overflow-baseline.ts",
"test:e2e:record-har": "node tests/e2e/record-har.ts",
"screenshots": "node tests/e2e/capture-pr-screenshots.ts"
},
"dependencies": {
"@jsonbored/chain-summaries": "*",
"@jsonbored/metagraphed": "*",
"@jsonbored/ui-kit": "*",
"@polkadot/api": "^16.5.6",
"@polkadot/extension-dapp": "^0.63.1",
"@tailwindcss/vite": "^4.2.1",
"@tanstack/react-query": "^5.83.0",
"@tanstack/react-router": "^1.170.23",
"@tanstack/react-router-ssr-query": "^1.167.1",
"@tanstack/react-start": "^1.168.40",
"@tanstack/react-virtual": "^3.14.9",
"@tanstack/router-plugin": "^1.168.27",
"clsx": "^2.1.1",
"fumadocs-core": "^16.11.5",
"fumadocs-mdx": "^15.2.2",
"fumadocs-openapi": "^11.2.3",
"fumadocs-ui": "^16.11.5",
"graphiql": "^4.1.2",
"graphql": "^17.0.2",
"graphql-ws": "^6.2.1",
"lucide-react": "^0.575.0",
"posthog-js": "^1.407.2",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.1",
"tw-animate-css": "^1.3.4",
"vite-tsconfig-paths": "^6.0.2",
"workers-og": "^0.0.27",
"zod": "^4.4.3"
},
"optionalDependencies": {
"@posthog/rollup-plugin": "^1.4.9"
},
"devDependencies": {
"@eslint/js": "^9.39.5",
"@lovable.dev/vite-tanstack-config": "^2.7.7",
"@playwright/test": "^1.61.1",
"@types/node": "^22.20.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.2.0",
"eslint": "^9.39.5",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^15.15.0",
"nitro": "3.0.260603-beta",
"prettier": "^3.9.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.65.0",
"vite": "^7.3.6",
"vitest": "^3.2.7"
},
"overrides": {
"@babel/core": "^7.29.7",
"@tanstack/start-server-core": "1.169.23",
"esbuild": "^0.28.2",
"js-yaml": "^4.3.1"
}
}