-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
104 lines (104 loc) · 3.16 KB
/
package.json
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
{
"name": "@emerald/based-bridge",
"version": "0.0.0",
"license": "MIT",
"contributors": [
{
"name": "Kames Geraghty",
"did": "kames.eth"
},
{
"name": "Vitor Marthendal",
"did": "vitormarthendal.eth"
}
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint '**/*.{ts,tsx}'",
"lint-fix": "eslint '**/*.{ts,tsx}' --fix",
"format": "prettier . --list-different",
"format-fix": "prettier . --write",
"run-ci": "concurrently -c \"auto\" -p \"name\" -n \"format,lint\" \"pnpm format\" \"pnpm lint\" ",
"prepare": "wagmi generate"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=18.0.0"
},
"packageManager": "[email protected]",
"dependencies": {
"@emerald/erc721-token-list": "workspace:^",
"@graphql-typed-document-node/core": "^3.2.0",
"@hookform/resolvers": "^3.1.1",
"@radix-ui/react-dialog": "^1.0.2",
"@radix-ui/react-dropdown-menu": "^2.0.1",
"@radix-ui/react-label": "^2.0.0",
"@radix-ui/react-navigation-menu": "^1.1.1",
"@radix-ui/react-scroll-area": "^1.0.2",
"@radix-ui/react-select": "^1.2.0",
"@radix-ui/react-separator": "^1.0.1",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.2",
"@radix-ui/react-tooltip": "^1.0.3",
"@rainbow-me/rainbowkit": "2.0.2",
"@t3-oss/env-nextjs": "^0.4.0",
"@tanstack/react-query": "^5.28.4",
"@wagmi/core": "^2.6.10",
"class-variance-authority": "^0.4.0",
"clsx": "^1.2.1",
"cmdk": "^0.2.0",
"graphql": "^16.8.1",
"graphql-request": "^5.2.0",
"jotai": "^1.13.0",
"moment": "^2.30.1",
"next": "14.0.3",
"next-themes": "^0.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.9",
"react-icons": "^4.9.0",
"tailwind-merge": "^1.14.0",
"tailwindcss": "^3.3.3",
"tailwindcss-animate": "^1.0.7",
"usehooks-ts": "^2.9.1",
"viem": "^2.9.4",
"wagmi": "2.5.11",
"zod": "^3.21.4"
},
"devDependencies": {
"@graphprotocol/client-cli": "^3.0.0",
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/client-preset": "^4.1.0",
"@ianvs/prettier-plugin-sort-imports": "^4.1.0",
"@parcel/watcher": "^2.4.1",
"@svgr/webpack": "^6.5.1",
"@tsconfig/next": "^1.0.4",
"@types/luxon": "^3.2.0",
"@types/node": "^17.0.31",
"@types/react": "18.2.38",
"@types/react-dom": "18.2.17",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"@wagmi/cli": "^2.1.2",
"autoprefixer": "^10.4.13",
"concurrently": "^8.2.0",
"dotenv": "^16.4.5",
"eslint": "8.30.0",
"eslint-config-next": "14.0.3",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-tailwindcss": "^3.5.0",
"pino-pretty": "^11.0.0",
"postcss": "^8.4.19",
"prettier": "^2.8.1",
"prettier-plugin-tailwindcss": "^0.2.0",
"typescript": "5.0.4"
}
}