-
Notifications
You must be signed in to change notification settings - Fork 204
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "stellarflow-frontend",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=24"
},
"sideEffects": false,
"scripts": {
"dev": "next dev",
"build": "node scripts/generate-pwa-icons.js && next build --webpack && node scripts/check-bundle-size.js",
"build:analyze": "ANALYZE=true next build",
"build:strict": "next build --webpack && node scripts/check-bundle-size.js --strict && node scripts/check-css-size.js --strict",
"start": "next start",
"lint": "eslint",
"test": "node scripts/test-lang-cache.js",
"test:e2e": "playwright test",
"test:visual": "playwright test e2e/visual.spec.ts",
"test:visual:update": "playwright test e2e/visual.spec.ts --update-snapshots",
"analyze": "cross-env ANALYZE=true npm run build",
"audit:ci": "npm audit --audit-level=high"
},
"dependencies": {
"@ledgerhq/hw-app-str": "^7.0.3",
"@ledgerhq/hw-transport-webusb": "^6.29.6",
"@sentry/nextjs": "^10.69.0",
"@stellar/freighter-api": "^6.0.1",
"@stellar/stellar-sdk": "^17.0.1",
"@zxing/library": "^0.21.3",
"@tanstack/react-query": "^5.100.5",
"@tanstack/react-query-persist-client": "^5.100.5",
"@tanstack/react-table": "^8.21.3",
"@tanstack/react-virtual": "^3.13.24",
"@types/leaflet": "^1.9.21",
"@types/ws": "^8.18.1",
"chart.js": "^4.5.1",
"dompurify": "^3.4.14",
"framer-motion": "^12.38.0",
"fuse.js": "^7.3.0",
"isomorphic-dompurify": "^3.19.0",
"jspdf": "^4.2.1",
"leaflet": "^1.9.4",
"lightweight-charts": "^5.2.1",
"lucide-react": "^1.6.0",
"next": "^16.3.3",
"next-pwa": "^5.6.0",
"next-themes": "^0.4.6",
"qrcode": "^1.5.4",
"react": "19.2.3",
"react-chartjs-2": "^5.3.1",
"react-dom": "19.2.3",
"react-icons": "^5.6.0",
"react-leaflet": "^5.0.0",
"ws": "^8.20.0"
},
"devDependencies": {
"@next/bundle-analyzer": "^15.0.0",
"@playwright/test": "^1.62.1",
"@storybook/addon-a11y": "^10.5.5",
"@storybook/addon-links": "^10.5.5",
"@storybook/nextjs": "^10.5.5",
"@storybook/react": "^10.5.5",
"@tailwindcss/postcss": "^4",
"@types/node": "^24",
"@types/qrcode": "^1.5.5",
"@types/react": "^19",
"@types/react-dom": "^19",
"babel-plugin-react-compiler": "1.0.0",
"cross-env": "^7.0.3",
"eslint": "^9",
"eslint-config-next": "^16.3.3",
"tailwindcss": "^4",
"typescript": "^5",
"webpack-bundle-analyzer": "^4.9.0"
}
}