-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.93 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.93 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
{
"name": "delegit",
"private": true,
"version": "0.0.1",
"type": "module",
"packageManager": "pnpm@10.26.2",
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "papi",
"dev": "vite",
"build": "tsc -b && vite build",
"deploy": "gh-pages -d build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0 && pnpm run prettierlint",
"lint:fix": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --fix && pnpm run prettierlint --write",
"preview": "vite preview",
"prettierlint": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css}\"",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css}\""
},
"dependencies": {
"@polkadot-api/descriptors": "file:.papi/descriptors",
"@polkadot-labs/hdkd": "^0.0.26",
"@polkadot-labs/hdkd-helpers": "^0.0.27",
"@polkadot-ui/react": "0.0.1-alpha.35",
"@polkadot-ui/utils": "0.0.4",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-menubar": "^1.1.16",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-toggle-group": "^1.1.11",
"@radix-ui/react-tooltip": "^1.2.8",
"@reactive-dot/core": "^0.67.3",
"@reactive-dot/react": "^0.67.3",
"@reactive-dot/wallet-walletconnect": "^0.18.5",
"@tanstack/react-table": "^8.21.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"copy-to-clipboard": "^3.3.3",
"dot-connect": "^0.28.1",
"lucide-react": "^0.562.0",
"next-themes": "^0.4.6",
"polkadot-api": "^1.23.1",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-icons": "^5.5.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.11.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"usehooks-ts": "^3.1.1"
},
"devDependencies": {
"@eslint/compat": "^1.4.0",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@tailwindcss/postcss": "^4.1.18",
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"@vitejs/plugin-react": "^5.1.1",
"autoprefixer": "^10.4.22",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.22",
"gh-pages": "^6.3.0",
"globals": "^16.5.0",
"install": "0.13.0",
"postcss": "^8.5.6",
"prettier": "3.7.4",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vite-plugin-svgr": "^4.5.0"
}
}