-
Notifications
You must be signed in to change notification settings - Fork 295
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.56 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
{
"name": "fluxora-frontend",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"build:report": "vite build && node scripts/bundle-size-report.mjs",
"size-check": "npm run build && node scripts/bundle-size-report.mjs --fail",
"audit:vulnerabilities": "node scripts/vulnerability-audit.mjs",
"audit:licenses": "node scripts/license-audit.mjs",
"audit:supply-chain": "npm run audit:vulnerabilities && npm run audit:licenses",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier \"src/**/*.{ts,tsx,css}\" \"*.{js,json,md}\" --write",
"format:check": "prettier eslint.config.js .prettierrc package.json --check",
"test": "vitest run",
"test:e2e": "playwright test --project=chromium --project=firefox",
"test:e2e:full": "PLAYWRIGHT_WEBKIT=1 playwright test",
"test:a11y": "playwright test accessibility",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"check:locales": "vitest run src/i18n/__tests__/checkLocalesCI.test.ts"
},
"dependencies": {
"react-helmet-async": "^2.0.5",
"@stellar/freighter-api": "^6.0.1",
"@stellar/stellar-sdk": "^16.0.1",
"@testing-library/dom": "^10.4.1",
"clsx": "^2.1.1",
"lucide-react": "^0.575.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.5.0",
"react-router-dom": "^6.22.0",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.9.1",
"@eslint/js": "^10.0.1",
"@playwright/test": "1.61.0",
"@tailwindcss/vite": "^4.2.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.6.0",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^4.1.5",
"axe-core": "^4.11.3",
"eslint": "^10.5.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"fast-check": "^4.8.0",
"happy-dom": "^17.1.0",
"jsdom": "^26.0.0",
"prettier": "^3.8.4",
"tailwindcss": "^4.2.0",
"typescript": "^5.3.3",
"typescript-eslint": "^8.61.1",
"vite": "^7.3.1",
"vitest": "^4.1.5",
"vitest-axe": "^0.1.0"
},
"allowScripts": {
"esbuild@0.27.7": true
},
"packageManager": "pnpm@10.20.0+sha512.cf9998222162dd85864d0a8102e7892e7ba4ceadebbf5a31f9c2fce48dfce317a9c53b9f6464d1ef9042cba2e02ae02a9f7c143a2b438cd93c91840f0192b9dd"
}