-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.76 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.76 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
105
106
107
108
109
110
111
112
{
"name": "agent-dot",
"version": "1.9.4",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"tsc": "tsc --noEmit",
"build": "next build",
"build:vercel": "vercel build",
"start": "next start",
"lint": "cross-env NODE_ENV=development eslint .",
"lint:prod": "cross-env NODE_ENV=production eslint .",
"format": "prettier --check .",
"format:fix": "prettier --write --list-different .",
"prepare": "husky",
"lint-staged": "lint-staged",
"scripts:build": "tsc -p tsconfig.node.json",
"path:fix": "node scripts/run-with-pm.cjs scripts:build && node scripts/dist/fix-path.js",
"path:revert": "node scripts/run-with-pm.cjs scripts:build && node scripts/dist/revert-path.js",
"format:commit": "node scripts/run-with-pm.cjs path:revert && node scripts/run-with-pm.cjs format:fix",
"postinstall": "node scripts/run-with-pm.cjs papi",
"db:generate": "drizzle-kit generate --config=./drizzle.config.ts",
"db:migrate": "tsx --env-file=.env.local db/migrate.ts",
"db:drop": "drizzle-kit drop",
"db:pull": "drizzle-kit introspect",
"db:push": "drizzle-kit push",
"commitlint": "commitlint --edit"
},
"dependencies": {
"@ai-sdk/openai": "2.0.7",
"@ai-sdk/react": "2.0.8",
"@hookform/resolvers": "^5.2.1",
"@neondatabase/serverless": "^1.0.1",
"@paraspell/sdk": "^12.1.1",
"@polkadot-api/descriptors": "file:.papi/descriptors",
"@polkadot/ui-shared": "^3.15.3",
"@polkadot/util": "^13.5.4",
"@polkadot/util-crypto": "^13.5.4",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.2.7",
"@reactive-dot/core": "^0.58.2",
"@reactive-dot/react": "^0.60.1",
"@reactive-dot/wallet-ledger": "^0.16.61",
"@reactive-dot/wallet-mimir": "^0.1.27",
"@reactive-dot/wallet-walletconnect": "^0.17.40",
"@t3-oss/env-nextjs": "^0.13.8",
"ai": "5.0.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"detect-browser": "^5.3.0",
"drizzle-orm": "^0.44.4",
"drizzle-zod": "^0.8.3",
"fast-equals": "^5.2.2",
"framer-motion": "^12.23.12",
"lucide-react": "^0.539.0",
"marked": "^16.1.2",
"nanoid": "^5.1.5",
"next": "16.1.0",
"pino": "^9.8.0",
"polkadot-api": "^1.23.2",
"postgres": "^3.4.7",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-hook-form": "^7.62.0",
"react-icons": "^5.5.0",
"react-markdown": "^10.1.0",
"react-spinners": "^0.17.0",
"remark-gfm": "^4.0.1",
"rxjs": "^7.8.2",
"sonner": "^2.0.7",
"swr": "^2.3.5",
"tailwind-merge": "^3.3.1",
"vaul": "^1.1.2",
"zod": "^4.0.16"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@commitlint/format": "^19.8.1",
"@commitlint/types": "^19.8.1",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.33.0",
"@next/eslint-plugin-next": "^15.5.5",
"@tailwindcss/postcss": "^4.1.11",
"@types/node": "^24.2.1",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"baseline-browser-mapping": "^2.9.11",
"cross-env": "^10.0.0",
"drizzle-kit": "^0.31.4",
"eslint": "^9.33.0",
"eslint-config-next": "15.4.6",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.0",
"globals": "^16.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"pino-pretty": "^13.1.1",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4.1.11",
"tsx": "^4.20.3",
"tw-animate-css": "^1.3.6",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.0",
"vercel": "^48.9.0"
}
}