-
Notifications
You must be signed in to change notification settings - Fork 176
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.32 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
{
"name": "stellarflow-frontend",
"version": "0.1.0",
"private": true,
"sideEffects": false,
"scripts": {
"dev": "next dev",
"build": "node scripts/generate-pwa-icons.js && next build && node scripts/check-bundle-size.js",
"build:analyze": "ANALYZE=true next build",
"build:strict": "next build && 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": "^16.0.1",
"@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",
"framer-motion": "^12.38.0",
"fuse.js": "^7.3.0",
"html5-qrcode": "^2.3.8",
"isomorphic-dompurify": "^3.19.0",
"leaflet": "^1.9.4",
"lucide-react": "^1.6.0",
"next": "16.1.6",
"next-pwa": "^5.6.0",
"next-themes": "^0.4.6",
"qrcode": "^1.5.4",
"react": "19.2.3",
"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",
"@storybook/addon-a11y": "^10.5.5",
"@storybook/addon-essentials": "^8.6.14",
"@storybook/addon-interactions": "^8.6.14",
"@storybook/addon-links": "^10.5.5",
"@storybook/nextjs": "^10.5.5",
"@storybook/react": "^10.5.5",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@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.1.6",
"tailwindcss": "^4",
"typescript": "^5",
"webpack-bundle-analyzer": "^4.9.0"
}
}