forked from Bonizozo/stellar-tipjar-frontend
-
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.44 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.44 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": "stellar-tipjar-frontend",
"version": "0.1.0",
"private": true,
"description": "Open-source frontend for the Stellar Tip Jar project.",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:report": "playwright show-report"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@stellar/freighter-api": "^6.0.1",
"@stellar/stellar-sdk": "^14.6.1",
"@tanstack/react-query": "^5.95.2",
"@tanstack/react-query-devtools": "^5.95.2",
"next": "latest",
"next-pwa": "^5.6.0",
"react": "latest",
"react-dom": "latest",
"react-hook-form": "^7.72.0",
"react-hot-toast": "^2.6.0",
"recharts": "^3.8.1",
"socket.io-client": "^4.8.3",
"jspdf": "^4.2.1",
"qrcode": "^1.5.4",
"web-vitals": "^5.2.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/node": "^25",
"@types/qrcode": "^1.5.5",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/coverage-v8": "^4.1.2",
"autoprefixer": "^10",
"eslint": "^10",
"eslint-config-next": "latest",
"jsdom": "^29.0.1",
"postcss": "^8",
"tailwindcss": "^4.2.2",
"typescript": "^6",
"vitest": "^4.1.1"
}
}