-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.6 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
{
"name": "mergepay-web",
"version": "0.1.0",
"private": true,
"description": "Mergepay — split expenses on Stellar, settle instantly, track everything transparently.",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"test": "vitest run && tsx --test src/lib/__tests__/*.test.ts",
"test:e2e": "playwright test"
},
"dependencies": {
"@stellar/freighter-api": "^4.1.0",
"@stellar/stellar-sdk": "^12.3.0",
"@tanstack/react-query": "^5.51.23",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"framer-motion": "^11.3.24",
"lottie-react": "^2.4.0",
"lucide-react": "^0.424.0",
"next": "^14.2.5",
"qrcode.react": "^4.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sonner": "^1.5.0",
"tailwind-merge": "^2.6.1",
"zod": "^3.23.8",
"zustand": "^4.5.4"
},
"devDependencies": {
"@playwright/test": "^1.45.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.3",
"@types/node": "^20.14.14",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitest/coverage-v8": "^4.1.10",
"autoprefixer": "^10.4.20",
"doctrine": "^0.7.2",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"jsdom": "^26.1.0",
"postcss": "^8.4.41",
"tailwindcss": "^3.4.9",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.19.2",
"typescript": "^5.5.4",
"vitest": "^4.1.10"
}
}