forked from LFGBanditLabs/Quipay
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.61 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 3.61 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "scaffold-stellar-frontend",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite",
"start": "concurrently --kill-others-on-fail --names stellar,vite -c gray,green --pad-prefix \"stellar scaffold watch --build-clients\" \"vite\"",
"build": "tsc -b && vite build",
"build:fast": "vite build",
"social:generate": "node scripts/generate-social-previews.mjs",
"lighthouse": "lighthouse http://127.0.0.1:4173 --quiet --chrome-flags='--headless --no-sandbox' --only-categories=performance,seo --preset=desktop --output html --output json --output-path ./lighthouse-report",
"install:contracts": "npm install --workspace=packages && npm run build --workspace=packages",
"preview": "vite preview",
"lint": "eslint .",
"format": "prettier . --write",
"prepare": "husky",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"test:e2e:report": "playwright show-report"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"@base-ui/react": "^1.3.0",
"@creit.tech/stellar-wallets-kit": "^1.9.5",
"@fontsource-variable/geist": "^5.2.8",
"@stellar/design-system": "^3.2.5",
"@stellar/stellar-sdk": "^14.5.0",
"@stellar/stellar-xdr-json": "^23.0.0",
"@tanstack/react-query": "^5.90.11",
"@types/react-grid-layout": "^1.3.6",
"@types/react-helmet": "^6.1.11",
"binaryen": "^125.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"flatted": "^3.4.2",
"h3": "^2.0.1-rc.16",
"i18next": "^25.8.14",
"i18next-browser-languagedetector": "^8.2.1",
"jspdf": "^4.2.1",
"jspdf-autotable": "^3.8.4",
"jws": "^4.0.1",
"lossless-json": "^4.3.0",
"lucide-react": "^1.1.0",
"minimatch": "^10.2.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-grid-layout": "^2.2.2",
"react-helmet": "^6.1.0",
"react-i18next": "^16.5.6",
"react-joyride": "^2.9.3",
"react-router-dom": "^7.13.1",
"recharts": "^3.7.0",
"rollup": "^4.59.0",
"shadcn": "^4.1.0",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@playwright/test": "^1.58.2",
"@resvg/resvg-js": "^2.6.2",
"@tailwindcss/postcss": "^4.2.0",
"@tailwindcss/vite": "^4.2.0",
"@types/bun": "^1.3.11",
"@types/jspdf": "^2.0.0",
"@types/lodash": "^4.17.21",
"@types/node": "^25.5.0",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"@types/react-helmet": "^6.1.11",
"@types/react-joyride": "^2.0.2",
"@vitejs/plugin-react": "^5.1.1",
"autoprefixer": "^10.4.24",
"concurrently": "^9.2.1",
"dotenv": "^17.2.3",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-dom": "^2.3.11",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"eslint-plugin-react-x": "^2.3.11",
"glob": "^13.0.0",
"globals": "^17.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"postcss": "^8.5.6",
"prettier": "3.6.2",
"tailwindcss": "^4.2.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.48.1",
"vite": "^7.2.6",
"vite-plugin-node-polyfills": "^0.24.0",
"vite-plugin-pwa": "^1.2.0",
"vite-plugin-wasm": "^3.5.0"
},
"lint-staged": {
"**/*": [
"eslint --fix --no-warn-ignored",
"prettier --write --ignore-unknown"
]
},
"overrides": {
"serialize-javascript": "^7.0.3",
"dompurify": "^3.2.4"
}
}