-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.42 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.42 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
{
"name": "passage-staking-site",
"version": "0.1.0",
"private": true,
"scripts": {
"gen:graz": "graz generate -g",
"gen:cw": "bun run ./setup/codegen.ts",
"next:dev": "next dev",
"next:build": "next build",
"next:start": "next start",
"next:lint": "next lint",
"docker:start": "docker compose up --remove-orphans -d",
"docker:stop": "docker compose down",
"dev:start": "bun run docker:start && bun run ./setup/setup-localnet.ts && bun run next dev",
"dev:stop": "bun run docker:stop && rm -rf .data"
},
"dependencies": {
"@cosmwasm/ts-codegen": "^1.11.1",
"@hookform/resolvers": "^3.9.0",
"@radix-ui/react-icons": "^1.3.0",
"@uju-labs/cosmos-utils": "0.1.1",
"chain-registry": "^1.46.4",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"graz": "0.1.18",
"lodash": "^4.17.21",
"long": "^5.2.3",
"lucide-react": "^0.441.0",
"next": "14.2.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.53.0",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@chain-registry/types": "^0.44.2",
"@types/node": "^20",
"@types/react": "18.2.20",
"@types/react-dom": "18.2.7",
"autoprefixer": "^10.0.1",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"eslint": "^8",
"eslint-config-next": "14.2.3"
}
}