-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.77 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.77 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": "deeploy-dapp",
"private": true,
"type": "module",
"version": "0.1.1",
"scripts": {
"dev": "vite",
"dev:logs": "vite --debug",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"add-service": "tsx scripts/add-service.ts",
"validate-services": "tsx scripts/validate-services.ts"
},
"dependencies": {
"@codemirror/autocomplete": "^6.19.0",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lint": "^6.9.0",
"@heroui/alert": "^2.2.23",
"@heroui/button": "^2.2.23",
"@heroui/checkbox": "^2.3.24",
"@heroui/date-picker": "^2.3.27",
"@heroui/dropdown": "^2.3.23",
"@heroui/form": "^2.1.23",
"@heroui/input": "^2.4.24",
"@heroui/modal": "^2.2.20",
"@heroui/pagination": "^2.2.21",
"@heroui/select": "^2.4.24",
"@heroui/skeleton": "^2.2.15",
"@heroui/slider": "^2.4.20",
"@heroui/spinner": "^2.2.20",
"@heroui/switch": "^2.2.21",
"@heroui/system": "^2.4.22",
"@heroui/tabs": "^2.2.20",
"@heroui/theme": "^2.4.22",
"@hookform/resolvers": "^5.1.1",
"@tailwindcss/vite": "^4.1.11",
"@tanstack/react-query": "^5.80.6",
"@uiw/react-codemirror": "^4.25.2",
"axios": "^1.9.0",
"clsx": "^2.1.1",
"connectkit": "^1.8.2",
"date-fns": "^4.1.0",
"dexie": "^4.0.11",
"dexie-react-hooks": "^1.1.7",
"framer-motion": "^12.23.22",
"lodash": "^4.17.21",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "^7.59.0",
"react-hot-toast": "^2.5.2",
"react-icons": "^5.5.0",
"react-router-dom": "^7.6.2",
"siwe": "^2.3.2",
"viem": "^2.31.0",
"wagmi": "^2.15.6",
"world-countries": "^5.1.0",
"zod": "^3.25.67"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@types/inquirer": "^9.0.9",
"@types/lodash": "^4.17.17",
"@types/node": "^24.0.0",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-basic-ssl": "^2.0.0",
"@vitejs/plugin-react": "^4.5.2",
"@vitejs/plugin-react-swc": "^3.9.0",
"autoprefixer": "^10.4.21",
"eslint": "^9.25.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"inquirer": "^12.10.0",
"postcss": "^8.5.4",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4.1.11",
"tsx": "^4.20.6",
"typescript": "~5.8.3",
"typescript-eslint": "^8.30.1",
"vite": "^6.3.5"
}
}