-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.46 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.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
{
"name": "accesslayer-client",
"private": true,
"version": "0.0.0",
"packageManager": "pnpm@10.6.5",
"type": "module",
"scripts": {
"preinstall": "node -e \"const ua = process.env.npm_config_user_agent || ''; if (!ua.includes('pnpm')) { console.error('Use pnpm for this repository. Run: pnpm install'); process.exit(1); }\"",
"dev": "vite --host",
"build": "tsc -b && vite build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check": "pnpm lint && pnpm build",
"prepare": "husky",
"lint-staged": "lint-staged",
"test": "vitest run",
"test:watch": "vitest",
"preview": "vite preview",
"typechain": "typechain --target ethers-v6 --out-dir src/types/contracts \"src/contracts/abis/*.json\""
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix"
],
"*.{css,md,json,yml,yaml}": [
"prettier --write"
]
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-slot": "^1.2.4",
"@tailwindcss/vite": "^4.1.11",
"@tanstack/react-query": "^5.90.12",
"axios": "^1.13.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"ethers": "^6.13.4",
"framer-motion": "^12.27.1",
"gsap": "^3.14.2",
"js-cookie": "^3.0.5",
"lucide-react": "^0.525.0",
"react": "^19.1.0",
"react-day-picker": "^9.13.0",
"react-dom": "^19.1.0",
"react-hot-toast": "^2.5.2",
"react-router": "^7.7.0",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.11",
"viem": "^2.21.54",
"wagmi": "^2.13.4",
"zod": "^4.2.1",
"zustand": "^5.0.9"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@typechain/ethers-v6": "^0.5.1",
"@types/js-cookie": "^3.0.6",
"@types/node": "^24.0.15",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react-swc": "^3.10.2",
"eslint": "^9.30.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"fast-check": "^4.6.0",
"globals": "^16.3.0",
"husky": "^9.1.7",
"jsdom": "^29.0.1",
"lint-staged": "^15.5.2",
"prettier": "^3.6.2",
"tw-animate-css": "^1.3.5",
"typechain": "^8.3.2",
"typescript": "~5.8.3",
"typescript-eslint": "^8.35.1",
"vite": "^7.0.4",
"vitest": "^4.1.2"
}
}