-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.54 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
{
"name": "utility-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "vitest --run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:visual": "npx playwright test tests/visual",
"visual:update-baselines": "npx tsx scripts/update-baselines.ts",
"test:coverage": "vitest --run --coverage.enabled --coverage.provider=v8",
"test:coverage:ci": "vitest --run --coverage.enabled --coverage.provider=v8 --coverage.reporter=text --coverage.reporter=json-summary --coverage.reporter=lcov"
},
"dependencies": {
"@stellar/stellar-sdk": "^15.1.0",
"@types/three": "^0.180.0",
"bignumber.js": "^11.1.3",
"idb": "^8.0.3",
"intl-messageformat": "^11.2.8",
"next": "16.2.9",
"qrcode": "^1.5.4",
"react": "19.2.4",
"react-dom": "19.2.4",
"three": "^0.180.0"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/bignumber.js": "^4.0.3",
"@types/node": "^20",
"@types/pngjs": "^6.0.5",
"@types/qrcode": "^1.5.6",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^6.0.2",
"eslint": "^9",
"eslint-config-next": "16.2.9",
"jsdom": "^29.1.1",
"pixelmatch": "^7.2.0",
"pngjs": "^7.0.0",
"tailwindcss": "^4",
"tsx": "^4.22.4",
"typescript": "^5",
"vitest": "^4.1.9"
}
}