-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.85 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
{
"name": "trustlend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "cross-env NODE_OPTIONS=--dns-result-order=ipv4first next dev",
"build": "next build",
"start": "cross-env NODE_OPTIONS=--dns-result-order=ipv4first next start",
"lint": "eslint",
"e2e:seed": "node scripts/e2e-seed-and-run.mjs",
"oracle:post": "node scripts/oracle-post-credit-score.mjs",
"liquidation:keeper": "tsx scripts/liquidation-keeper.ts",
"webhooks:listener": "tsx scripts/webhook-listener.ts",
"prepare": "husky",
"commitlint": "commitlint --edit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@albedo-link/intent": "^0.13.0",
"@creit.tech/stellar-wallets-kit": "^2.5.0",
"@stellar/freighter-api": "^6.0.1",
"@stellar/stellar-sdk": "^16.0.1",
"@supabase/ssr": "^0.10.2",
"@supabase/supabase-js": "^2.103.0",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.38.0",
"clsx": "^2.1.1",
"framer-motion": "^12.38.0",
"lucide-react": "^1.27.0",
"next": "16.2.6",
"next-themes": "^0.4.6",
"pdfkit": "^0.19.1",
"prom-client": "^15.1.3",
"react": "19.2.4",
"react-dom": "19.2.4",
"sanitize-html": "^2.17.5",
"zod": "^4.4.3"
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@commitlint/types": "^19.8.0",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/pdfkit": "^0.17.6",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/sanitize-html": "^2.16.1",
"@vitest/coverage-v8": "^4.1.9",
"cross-env": "^10.1.0",
"eslint": "^9",
"eslint-config-next": "16.2.3",
"husky": "^9.1.7",
"tailwindcss": "^4",
"tsx": "^4.19.2",
"typescript": "^5",
"vitest": "4.1.9"
}
}