-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.66 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
{
"name": "payguard-ai",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build --turbopack",
"start": "next start",
"lint": "eslint",
"test:blockchain": "node scripts/test-blockchain.mjs",
"contract:deploy": "node scripts/deploy-contract.mjs",
"contract:compile": "npx @algorandfoundation/tealscript contracts/PayGuardAI.ts contracts/build",
"contract:test": "tsx contracts/test.ts"
},
"dependencies": {
"@algorandfoundation/algokit-utils": "^9.1.2",
"@libsql/client": "^0.15.14",
"@perawallet/connect": "^1.4.2",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toast": "^1.2.15",
"@tanstack/react-query": "^5.87.1",
"algosdk": "^3.4.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.542.0",
"next": "15.5.2",
"openai": "^5.19.1",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-hot-toast": "^2.6.0",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"zustand": "^5.0.8"
},
"devDependencies": {
"@algorandfoundation/tealscript": "^0.107.0",
"@eslint/eslintrc": "^3",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.21",
"eslint": "^9",
"eslint-config-next": "15.5.2",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.17",
"tsx": "^4.20.5",
"typescript": "^5"
}
}