forked from OphirPay/OphirPay
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.54 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.54 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
{
"name": "ophirpay",
"version": "0.1.0",
"private": true,
"description": "Open-source payment orchestration layer for Stellar — smart contracts, webhooks, batch payments, refunds, multisig, governance, and real-time event streaming",
"homepage": "https://ophirpay.vercel.app",
"repository": {
"type": "git",
"url": "https://github.com/OphirPay/OphirPay"
},
"bugs": {
"url": "https://github.com/OphirPay/OphirPay/issues"
},
"license": "MIT",
"keywords": [
"stellar",
"soroban",
"payments",
"blockchain",
"web3",
"crypto",
"smart-contracts",
"batch-payments",
"escrow",
"payment-streaming",
"multisig",
"governance",
"webhooks",
"refunds",
"open-source",
"tooling",
"fintech",
"defi"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:migrate:deploy": "prisma migrate deploy",
"db:migrate:status": "prisma migrate status",
"db:studio": "prisma studio",
"coverage": "vitest run --coverage",
"db:seed": "npx tsx prisma/seed.ts",
"db:push": "prisma db push",
"db:validate": "prisma validate && prisma generate",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"ci": "npm run typecheck && npm run lint -- --max-warnings 0 && npm test && npm run build",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"dependencies": {
"@prisma/client": "^6.5.0",
"@stellar/freighter-api": "^4.0.0",
"@stellar/stellar-sdk": "^13.2.0",
"@tanstack/react-query": "^5.101.4",
"next": "^16.3.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"zod": "^4.4.3"
},
"optionalDependencies": {
"ioredis": "^5.11.1"
},
"devDependencies": {
"@axe-core/playwright": "^4.13.0",
"@playwright/test": "^1.62.1",
"@rolldown/binding-linux-x64-gnu": "^1.2.2",
"@tailwindcss/postcss": "^4.1.6",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.15.0",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^6.0.5",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^9.26.0",
"eslint-config-next": "^16.3.0",
"jsdom": "^29.1.1",
"prisma": "^6.5.0",
"puppeteer": "^25.4.0",
"tailwindcss": "^4.1.6",
"typescript": "^5.8.0",
"vitest": "^4.1.10"
}
}