-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.46 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.46 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
{
"name": "remitwise-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:unit": "vitest run tests/unit",
"test:property": "vitest run tests/property",
"test:integration": "vitest run tests/integration",
"test:e2e": "playwright test"
},
"dependencies": {
"@prisma/client": "^5.22.0",
"@radix-ui/react-icons": "^1.3.2",
"@stellar/stellar-sdk": "^11.2.2",
"clsx": "^2.1.1",
"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": {
"@playwright/test": "^1.58.2",
"@types/node": "^20.19.33",
"@types/react": "^18.2.0",
"@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",
"eslint-config-next": "^14.2.35",
"jest": "^30.2.0",
"postcss": "^8.4.0",
"prisma": "^5.22.0",
"tailwindcss": "^3.3.0",
"tsx": "^4.21.0",
"typescript": "^5.0.0",
"vitest": "^4.0.18"
}
}