-
Notifications
You must be signed in to change notification settings - Fork 210
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.96 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.96 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
{
"name": "remitwise-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"generate:types": "openapi-typescript ./openapi.yaml --output ./src/api/types.ts",
"prebuild": "npm run generate:types",
"dev": "next dev",
"build": "next build --webpack",
"start": "next start",
"lint": "eslint .",
"test": "npm run test:unit",
"test:coverage": "node node_modules/vitest/vitest.mjs run --config vitest.config.mjs --configLoader runner --coverage",
"test:watch": "node node_modules/vitest/vitest.mjs --config vitest.config.mjs --configLoader runner",
"test:ui": "node node_modules/vitest/vitest.mjs --config vitest.config.mjs --configLoader runner --ui",
"test:unit": "npm run test:unit:node && npm run test:unit:vitest",
"test:unit:node": "node --test tests/unit/webhooks-verify.test.cjs tests/unit/middleware.test.cjs tests/unit/contract-cache.test.cjs",
"test:unit:vitest": "node node_modules/vitest/vitest.mjs run --config vitest.config.mjs --configLoader runner tests/unit/**/*.test.ts tests/unit/**/*.test.tsx",
"test:property": "node node_modules/vitest/vitest.mjs run --config vitest.config.mjs --configLoader runner tests/property",
"test:integration": "node --test tests/integration/auth.test.cjs tests/integration/health.test.cjs tests/integration/validation.test.cjs && node node_modules/vitest/vitest.mjs run --config vitest.config.mjs --configLoader runner tests/integration/api",
"test:e2e": "playwright test",
"test:perf": "npx playwright test tests/e2e/dashboard-performance.spec.ts"
},
"dependencies": {
"@prisma/client": "^5.22.0",
"@radix-ui/react-icons": "^1.3.2",
"@sentry/nextjs": "^10.60.0",
"@stellar/stellar-sdk": "^11.2.2",
"@tailwindcss/container-queries": "^0.1.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"clsx": "^2.1.1",
"fast-check": "^4.8.0",
"i18next": "^25.10.9",
"iron-session": "^8.0.4",
"lru-cache": "^11.2.6",
"lucide-react": "^0.575.0",
"next": "^16.1.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recharts": "^3.7.0",
"stellar-wallet-kit": "^2.0.7",
"swagger-ui-react": "^5.31.2",
"tailwind-merge": "^3.4.0",
"yaml": "^2.8.2",
"zod": "^4.3.6"
},
"devDependencies": {
"openapi-typescript": "^6.5.0",
"@playwright/test": "^1.58.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@types/jest-axe": "^3.5.9",
"@types/node": "^20.19.33",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.2.0",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"autoprefixer": "^10.4.0",
"eslint": "^8.57.1",
"lighthouse": "^11.0.0",
"eslint-config-next": "^14.2.35",
"jest": "^30.2.0",
"jest-axe": "^10.0.0",
"jsdom": "^29.1.1",
"postcss": "^8.4.0",
"prisma": "^5.22.0",
"tailwindcss": "^3.3.0",
"tsx": "^4.21.0",
"typescript": "^5.0.0",
"vitest": "^4.0.18"
}
}