forked from ritik4ever/stellar-portfolio-rebalancer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.33 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
{
"name": "stellar-portfolio-frontend",
"version": "0.1.0",
"type": "module",
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build",
"preview": "vite preview --host",
"test": "vitest run",
"test:unit": "vitest run",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:visual": "playwright test --project=visual-regression",
"test:e2e:visual-update": "playwright test --project=visual-regression --update-snapshots",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@sentry/react": "^9.14.0",
"@stellar/stellar-sdk": "^12.0.1",
"@tanstack/react-query": "^5.90.21",
"@tanstack/react-query-devtools": "^5.91.3",
"@testing-library/dom": "^10.4.1",
"clsx": "^2.0.0",
"framer-motion": "^10.16.4",
"i18next": "^23.7.0",
"lucide-react": "^0.263.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.5.0",
"react-router-dom": "^7.18.2",
"recharts": "^2.8.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.1",
"@chromatic-com/storybook": "^5.2.1",
"@playwright/test": "^1.58.2",
"@storybook/addon-a11y": "^10.4.6",
"@storybook/addon-docs": "^10.4.6",
"@storybook/addon-essentials": "^8.6.14",
"@storybook/addon-interactions": "^8.6.14",
"@storybook/addon-links": "^10.4.6",
"@storybook/addon-mcp": "^0.6.0",
"@storybook/addon-vitest": "^10.4.6",
"@storybook/blocks": "^8.6.14",
"@storybook/react": "^10.4.6",
"@storybook/react-vite": "^10.4.6",
"@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/node": "^24.3.1",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@vitejs/plugin-react": "^4.1.0",
"@vitest/browser-playwright": "^4.0.18",
"@vitest/coverage-v8": "^4.0.18",
"autoprefixer": "^10.4.16",
"esbuild": "^0.28.0",
"eslint-plugin-storybook": "^10.4.6",
"jsdom": "^26.1.0",
"playwright": "^1.61.1",
"postcss": "^8.4.31",
"storybook": "^10.4.6",
"tailwindcss": "^3.3.5",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vitest": "^4.1.5"
}
}