forked from Veritas-Vaults-Network/Soroban-Guard-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.13 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
{
"name": "soroban-guard-web",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:e2e": "playwright test",
"test:unit": "vitest run lib/",
"test:unit:watch": "vitest lib/"
},
"dependencies": {
"@vercel/kv": "^3.0.0",
"next": "14.2.35",
"qrcode.react": "^4.2.0",
"react": "^18",
"react-dom": "^18",
"recharts": "^3.8.1"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.14",
"@types/node": "^25",
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/coverage-v8": "^4.1.7",
"autoprefixer": "^10",
"eslint": "10.4.1",
"eslint-config-next": "16.2.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8",
"tailwindcss": "^4",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^6"
}
}