-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.42 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.42 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
{
"name": "stellar-dev-dashboard",
"version": "0.1.0",
"description": "A real-time developer dashboard for the Stellar network",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:analyze": "ANALYZE=1 vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write package.json package-lock.json eslint.config.js tsconfig.json .github/workflows/ci.yml .prettierrc.json",
"format:check": "prettier --check package.json package-lock.json 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",
"test:visual:update": "playwright test --project=visual --update-snapshots",
"test:visual:report": "playwright show-report tests/e2e/report",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"docs:api:generate": "node scripts/generate-api-docs.mjs"
},
"dependencies": {
"@axe-core/react": "^4.11.3",
"@stellar/stellar-sdk": "^12.3.0",
"date-fns": "^3.6.0",
"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-i18next": "^15.0.2",
"react-router-dom": "^6.30.4",
"recharts": "^2.12.7",
"uuid": "^9.0.1",
"zustand": "^4.5.4"
},
"optionalDependencies": {
"@ledgerhq/hw-transport-webhid": "^6.29.4",
"@ledgerhq/hw-transport-webusb": "^6.29.4",
"@stellar/ledger": "^1.0.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",
"@playwright/test": "^1.59.1",
"@storybook/addon-a11y": "^8.6.18",
"@storybook/addon-viewport": "^8.6.18",
"@storybook/react-vite": "^8.5.0",
"@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/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",
"globals": "^17.6.0",
"jsdom": "^29.1.1",
"lint-staged": "^17.0.5",
"msw": "^2.14.3",
"prettier": "^3.3.3",
"rollup-plugin-visualizer": "^5.12.0",
"storybook": "^8.5.0",
"typescript": "^6.0.3",
"vite": "^5.4.0",
"vitest": "^2.1.9"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint",
"*.{json,md,css,html,yml,yaml}": "prettier --check"
}
}