-
Notifications
You must be signed in to change notification settings - Fork 209
Expand file tree
/
Copy pathpackage.json
More file actions
144 lines (144 loc) · 5.69 KB
/
Copy pathpackage.json
File metadata and controls
144 lines (144 loc) · 5.69 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "stellar-dev-dashboard",
"version": "0.1.0",
"description": "A real-time developer dashboard for the Stellar network with advanced AI-enhanced transaction fee prediction",
"type": "module",
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=22 <27",
"pnpm": ">=9.0.0"
},
"scripts": {
"check:node": "node scripts/node-version-policy.mjs",
"test:node-support": "node --test tests/node-version-policy.test.mjs",
"ml:train": "node src/ml/train.js",
"ml:train:liquidity": "node src/ml/trainLiquidity.cjs",
"ml:train:phishing": "node src/ml/train_phishing.cjs",
"ml:server": "node src/ml/server.js",
"ml:server:liquidity": "node src/ml/liquidityServer.js",
"ml:build:train": "node src/ml/build_prediction/train.js",
"ml:build:server": "node src/ml/build_prediction/server.js",
"ml:backup:train": "node src/ml/backup/train.js",
"ml:backup:server": "node src/ml/backup/server.js",
"dev": "vite",
"build": "vite build && node scripts/check-bundle-budgets.mjs",
"build:analyze": "ANALYZE=1 vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"plugin:create": "node scripts/create-plugin.mjs",
"format": "prettier --write package.json pnpm-lock.yaml eslint.config.js tsconfig.json .github/workflows/ci.yml .prettierrc.json",
"format:check": "prettier --check package.json pnpm-lock.yaml eslint.config.js tsconfig.json .github/workflows/ci.yml .prettierrc.json",
"type-check": "tsc --noEmit",
"test": "vitest run --config vitest.config.js",
"test:watch": "vitest --config vitest.config.js",
"test:ui": "vitest --ui --config vitest.config.js",
"test:coverage": "vitest run --coverage --config vitest.config.js",
"test:unit": "vitest run --config vitest.config.js --dir src",
"test:integration": "vitest run --config vitest.config.js --dir tests/integration",
"test:jest": "jest",
"test:jest:coverage": "jest --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:visual": "playwright test --project=visual-mobile --project=visual-tablet --project=visual-desktop --project=visual-wide",
"test:visual:update": "playwright test --project=visual-mobile --project=visual-tablet --project=visual-desktop --project=visual-wide --update-snapshots",
"test:visual:report": "playwright show-report tests/e2e/report",
"test:a11y": "playwright test --project=a11y",
"test:mutation": "stryker run",
"test:lighthouse": "pnpm run build && lhci autorun",
"test:chromatic": "node scripts/run-chromatic.mjs",
"test:coverage:check": "node scripts/check-coverage.mjs",
"ci:workflows": "bash scripts/validate-workflows.sh",
"ci:testing": "pnpm run test:coverage && pnpm run test:coverage:check && pnpm run ci:workflows",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"docs:validate-drift": "node scripts/validate-docs-drift.mjs",
"docs:api:generate": "node scripts/generate-api-docs.mjs",
"check:package-manager": "node scripts/validate-package-manager.mjs",
"sbom:generate": "node scripts/generate-sbom.mjs",
"api:start": "node api/server.js"
},
"dependencies": {
"@axe-core/react": "^4.11.3",
"@sentry/browser": "8.54.0",
"@sentry/react": "8.54.0",
"@stellar/stellar-sdk": "^12.3.0",
"@tensorflow/tfjs": "^4.22.0",
"@tensorflow/tfjs-node": "4.22.0",
"d3-array": "^3.2.4",
"d3-force-3d": "^3.0.6",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.1.0",
"d3-selection": "^3.0.0",
"d3-shape": "^3.2.0",
"d3-time-format": "^4.1.0",
"d3-zoom": "^3.0.0",
"date-fns": "^3.6.0",
"express": "^4.18.2",
"i18next": "^23.15.1",
"i18next-browser-languagedetector": "^8.0.0",
"idb": "^8.0.3",
"jest-axe": "^10.0.0",
"lucide-react": "^0.577.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"react-force-graph-2d": "^1.29.1",
"react-i18next": "^15.0.0",
"react-router-dom": "^6.30.4",
"recharts": "^2.12.7",
"swr": "^2.2.0",
"uuid": "^9.0.1",
"ws": "^8.16.0",
"zustand": "^4.5.4"
},
"optionalDependencies": {
"@ledgerhq/hw-transport-webhid": "^6.29.4",
"@ledgerhq/hw-transport-webusb": "^6.29.4",
"ioredis": "^5.4.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.0",
"@babel/preset-env": "^7.29.3",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@eslint/js": "^9.39.4",
"@lhci/cli": "^0.14.0",
"@playwright/test": "^1.59.1",
"@storybook/addon-a11y": "^8.6.18",
"@storybook/addon-viewport": "^8.6.18",
"@storybook/react-vite": "^8.5.0",
"@stryker-mutator/core": "^8.7.1",
"@stryker-mutator/vitest-runner": "^8.7.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/express": "^5.0.6",
"@types/jest": "^29.5.13",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^9.0.8",
"@typescript-eslint/parser": "^8.60.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^2.1.9",
"@vitest/ui": "^2.1.9",
"eslint": "^9.39.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"fast-check": "^4.9.0",
"globals": "^17.6.0",
"jsdom": "^29.1.1",
"lint-staged": "^17.0.0",
"msw": "^2.14.3",
"prettier": "^3.3.3",
"rollup-plugin-visualizer": "^5.12.0",
"storybook": "^8.5.0",
"typescript": "^5.9.3",
"vite": "^5.4.0",
"vitest": "^2.1.9"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint",
"*.{json,md,css,html,yml,yaml}": "prettier --check"
}
}