-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.09 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 3.09 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
{
"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",
"deploy:testnet": "tsx scripts/deploy-testnet.ts",
"deploy:testnet:dry": "tsx scripts/deploy-testnet.ts --dry-run",
"verify:onchain": "tsx scripts/verify-onchain-lifecycle.ts",
"oracle:post": "node scripts/oracle-post-credit-score.mjs",
"liquidation:keeper": "tsx scripts/liquidation-keeper.ts",
"price:oracle": "tsx scripts/price-oracle-keeper.ts",
"price:oracle:once": "tsx scripts/price-oracle-keeper.ts --once",
"price:oracle:dry": "tsx scripts/price-oracle-keeper.ts --dry-run",
"webhooks:listener": "tsx scripts/webhook-listener.ts",
"backup:db": "bash scripts/backup.sh",
"backup:db:dry": "cross-env BACKUP_DRY_RUN=1 bash scripts/backup.sh",
"prepare": "husky",
"commitlint": "commitlint --edit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@creit.tech/stellar-wallets-kit": "^2.5.0",
"@neondatabase/serverless": "^1.1.0",
"@radix-ui/react-tooltip": "^1.2.16",
"@stellar/freighter-api": "^6.0.1",
"@stellar/stellar-sdk": "^16.0.1",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.38.0",
"@vercel/blob": "^2.8.0",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.2",
"framer-motion": "^12.38.0",
"jose": "^6.2.12",
"lucide-react": "^1.8.0",
"next": "16.2.6",
"next": "16.3.3",
"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",
"sanitize-html": "^2.17.7",
"zod": "^4.4.3"
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@commitlint/types": "^19.8.0",
"@playwright/test": "^1.62.0",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/pdfkit": "^0.17.6",
"@types/pg": "^8.23.1",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/sanitize-html": "^2.16.1",
"@vitest/coverage-v8": "^4.1.9",
"cross-env": "^10.1.0",
"drizzle-kit": "^0.31.10",
"eslint": "^9",
"eslint-config-next": "16.2.3",
"eslint-config-next": "16.3.3",
"husky": "^9.1.7",
"pg": "^8.23.0",
"tailwindcss": "^4",
"tsx": "^4.19.2",
"typescript": "^5",
"vitest": "4.1.9"
},
"overrides": {
"nanoid": ">=3.3.18",
"js-yaml": ">=4.3.2",
"sharp": ">=0.35.4",
"smol-toml": ">=1.7.1",
"browserslist": ">=4.28.7",
"baseline-browser-mapping": ">=2.11.0",
"fast-uri": ">=3.1.6",
"stream-json": ">=3.5.0",
"@humanfs/node": ">=0.16.8",
"axios": ">=1.18.0",
"brace-expansion": "1.1.18"
}
}