-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.46 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.46 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
{
"name": "adamantfi-site",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"build:start": "next build && next start",
"lint": "next lint",
"remote:add": "git remote add origin https://github.com/AdamantFi/AdamantFiSite.git && git remote add personal https://github.com/dredshep/AdamantFiSite.git",
"push": "git push origin main && git push personal main",
"prebuild": "pnpm run type-check",
"type-check": "tsc --noEmit && eslint .",
"lint-full": "pnpm run lint && pnpm run type-check",
"lint-and-open": "pnpm run type-check > type-errors.txt 2>&1 && node scripts/openErrors.js cursor",
"lint-and-open:cursor": "pnpm run type-check > type-errors.txt 2>&1 && node scripts/openErrors.js cursor",
"lint-and-open:code": "pnpm run type-check > type-errors.txt 2>&1 && node scripts/openErrors.js code",
"unused": "bun x ts-unused-exports tsconfig.json --excludePathsFromReport=\".next;node_modules;pages;tailwind.config.ts\"",
"optimize-images": "node scripts/optimize-token-images.js"
},
"dependencies": {
"@cosmjs/amino": "^0.32.3",
"@cosmjs/proto-signing": "^0.32.3",
"@hookform/resolvers": "^3.6.0",
"@keplr-wallet/types": "^0.12.101",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-form": "^0.0.3",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/themes": "^2.0.3",
"@shadeprotocol/shadejs": "^1.5.4",
"@tanstack/react-query": "^5.59.16",
"@types/react-toastify": "^4.1.0",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"@typescript-eslint/typescript-estree": "^8.12.2",
"async-await-retry": "^2.1.0",
"axios": "^1.7.2",
"bignumber.js": "^9.1.2",
"bn.js": "^5.2.1",
"class-variance-authority": "^0.7.0",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"decimal.js": "^10.6.0",
"eslint": "8",
"framer-motion": "^12.9.4",
"gray-matter": "^4.0.3",
"lucide-react": "^0.362.0",
"marked": "^12.0.2",
"moment": "^2.30.1",
"next": "^15.0.4",
"p-throttle": "^6.2.0",
"qrcode.react": "^4.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.51.5",
"react-icons": "^5.2.1",
"react-toastify": "^11.0.5",
"react-tooltip": "^5.28.0",
"react-vega": "^7.6.0",
"secretjs": "1.21.2",
"seedrandom": "^3.0.5",
"styled-components": "^6.1.11",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"vega": "^5.29.0",
"vega-lite": "^5.18.1",
"zod": "^3.23.8",
"zustand": "^5.0.0"
},
"devDependencies": {
"@types/bn.js": "^5.1.5",
"@types/node": "^22.0.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/seedrandom": "^3.0.8",
"autoprefixer": "^10.4.19",
"eslint-config-next": "^15.0.2",
"postcss": "^8.4.38",
"sharp": "^0.34.3",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.4"
},
"engines": {
"node": ">=22.0.0"
},
"packageManager": "pnpm@9.14.2",
"unusedExports": {
"include": [
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"./node_modules",
"./pages"
]
}
}