forked from AgroVestOfficial/AgroVest-Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.39 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
88
89
90
91
{
"name": "agrovest-frontend",
"version": "0.1.0",
"private": true,
"description": "Real World Asset platform empowering African farmers through tokenized farm investments, direct-to-consumer marketplace, and blockchain-based land ownership",
"repository": {
"type": "git",
"url": "git+https://github.com/AgroVestOfficial/AgroVest-Frontend.git"
},
"keywords": [
"agrovest",
"defi",
"rwa",
"real-world-assets",
"agriculture",
"africa",
"web3",
"blockchain",
"crossfi",
"nextjs"
],
"author": "AgroVestOfficial",
"license": "MIT",
"bugs": {
"url": "https://github.com/AgroVestOfficial/AgroVest-Frontend/issues"
},
"homepage": "https://github.com/AgroVestOfficial/AgroVest-Frontend#readme",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"dependencies": {
"@nextui-org/react": "^2.6.11",
"@reown/appkit": "^1.6.8",
"@reown/appkit-adapter-wagmi": "^1.6.8",
"@tanstack/react-query": "^5.66.3",
"@tanstack/react-table": "^8.21.3",
"apexcharts": "^3.49.1",
"axios": "^1.18.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"encoding": "^0.1.13",
"ethers": "^6.13.1",
"framer-motion": "^11.5.6",
"lucide-react": "^1.21.0",
"next": "14.2.12",
"pino": "^10.3.1",
"pino-pretty": "^11.2.1",
"react": "^18",
"react-apexcharts": "^1.4.1",
"react-dom": "^18",
"react-icons": "^5.3.0",
"react-loader-spinner": "^8.0.2",
"sonner": "^2.0.7",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"viem": "^2.53.1",
"wagmi": "^2.14.11"
},
"devDependencies": {
"@types/node": "^25",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.12",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-tailwindcss": "^3.18.3",
"husky": "^9.1.7",
"lint-staged": "^17.0.5",
"postcss": "^8",
"prettier": "^3.8.4",
"prettier-plugin-tailwindcss": "^0.8.0",
"tailwindcss": "^3.4.1",
"typescript": "^5"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,md,mjs}": [
"prettier --write"
]
}
}