-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.71 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.71 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
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "agentokratia-frontend",
"version": "0.1.0",
"description": "A marketplace for AI agents and APIs with pay-per-call pricing in stablecoins",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/Agentokratia/agentokratia"
},
"homepage": "https://agentokratia.com",
"bugs": {
"url": "https://github.com/Agentokratia/agentokratia/issues"
},
"keywords": [
"ai",
"agents",
"marketplace",
"crypto",
"web3",
"usdc",
"base",
"nextjs"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"db:start": "npx supabase start",
"db:stop": "npx supabase stop",
"db:reset": "npx supabase db reset",
"db:status": "npx supabase status",
"db:push": "npx supabase db push",
"db:migrate": "npx supabase migration up",
"prepare": "husky"
},
"dependencies": {
"@agentokratia/x402-escrow": "^2.0.1",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-toast": "^1.2.1",
"@radix-ui/react-tooltip": "^1.1.2",
"@radix-ui/react-visually-hidden": "^1.2.4",
"@rainbow-me/rainbowkit": "^2.1.7",
"@supabase/supabase-js": "^2.87.1",
"@tanstack/react-query": "^5.56.2",
"@wagmi/core": "2.22.1",
"@x402/axios": "^2.1.0",
"@x402/core": "^2.0.0",
"@x402/evm": "^2.1.0",
"@x402/fetch": "^2.0.0",
"axios": "^1.13.2",
"clsx": "^2.1.1",
"jose": "^6.1.3",
"lucide-react": "^0.446.0",
"next": "^16.0.8",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"siwe": "^2.3.2",
"viem": "^2.21.9",
"wagmi": "^2.12.12",
"zod": "3.23.8",
"zustand": "^4.5.5"
},
"devDependencies": {
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@types/node": "^20.16.10",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"eslint": "^9.0.0",
"eslint-config-next": "^16.0.8",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"null-loader": "^4.0.1",
"prettier": "^3.7.4",
"supabase": "^2.65.8",
"typescript": "^5.6.2",
"typescript-eslint": "^8.50.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"supabase"
]
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css}": [
"prettier --write"
]
}
}