-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.69 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.69 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
{
"name": "revnet-app",
"version": "0.0.1",
"private": true,
"engines": {
"node": "22.x"
},
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"export": "next export",
"ts:compile": "tsc",
"generate:gql": "DOTENV_CONFIG_PATH=./.env.local graphql-code-generator --config codegen.yml -r dotenv/config",
"format:write": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,scss}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,css,scss}\""
},
"dependencies": {
"@farcaster/frame-node": "^0.0.20",
"@farcaster/frame-sdk": "^0.0.45",
"@farcaster/frame-wagmi-connector": "^0.0.22",
"@heroicons/react": "^2.0.18",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-toast": "^1.2.14",
"@radix-ui/react-tooltip": "^1.2.7",
"@tailwindcss/forms": "^0.5.6",
"@tanstack/react-query": "^5.45.0",
"@uniswap/sdk-core": "^7.8.0",
"@uniswap/v3-sdk": "^3.26.0",
"@upstash/redis": "^1.34.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"connectkit": "^1.8.2",
"date-fns": "^3.3.0",
"dompurify": "^3.2.4",
"formik": "^2.4.5",
"formik-validator-zod": "^2.2.0",
"fpnum": "^1.0.0",
"graphql": "^16.8.0",
"graphql-tag": "^2.0.0",
"juice-sdk-core": "^2.1.2",
"juice-sdk-react": "^5.0.2",
"lucide-react": "^0.395.0",
"next": "^14.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recharts": "^3.5.0",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.6",
"viem": "^2.22.9",
"wagmi": "^2.14.8",
"zod": "^4.1.4"
},
"devDependencies": {
"@babel/core": "^7.22.17",
"@babel/preset-env": "^7.22.15",
"@babel/preset-typescript": "^7.22.15",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "^4.3.0",
"@graphql-codegen/introspection": "^4.0.3",
"@graphql-codegen/typescript": "^4.0.7",
"@graphql-codegen/typescript-operations": "^4.2.1",
"@types/dompurify": "^3.0.2",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.3",
"@types/recharts": "^1.8.24",
"autoprefixer": "^10.4.19",
"dotenv": "^16.3.1",
"eslint": "^8",
"eslint-config-next": "^14.2.4",
"eslint-config-prettier": "^10.1.5",
"postcss": "^8.4.33",
"prettier": "^3.5.3",
"prettier-plugin-organize-imports": "^4.2.0",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^3.4.1",
"typescript": "^5.0.4"
},
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}