forked from bitcoin-sv/spv-wallet-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.22 KB
/
package.json
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "spv-wallet-admin-v2",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": "22"
},
"engineStrict": true,
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint --report-unused-disable-directives --max-warnings 0",
"test:unit": "vitest --config ./vitest.config.unit.ts",
"test:visual": "docker compose -f ./playwright/docker-compose.yaml up playwright-tests --build",
"test:visual:update": "docker compose -f ./playwright/docker-compose.yaml up playwright-update-tests --build",
"coverage": "vitest run --coverage",
"preview": "vite preview",
"prettier:check": "prettier --check 'src/**/*.{ts,tsx,js,jsx,json,css}'",
"prettier:format": "prettier --write 'src/**/*.{ts,tsx,js,jsx,json,css}'",
"postinstall": "npx playwright install --with-deps"
},
"dependencies": {
"@4chain-ag/react-configuration": "^1.0.4",
"@bsv/sdk": "^1.0.37",
"@bsv/spv-wallet-js-client": "^1.0.0-beta.25",
"@estruyf/github-actions-reporter": "^1.9.2",
"@heroicons/react": "^2.1.3",
"@hookform/resolvers": "^3.9.0",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-tooltip": "^1.1.2",
"@tanstack/react-query": "^5.37.1",
"@tanstack/react-router": "^1.33.4",
"@tanstack/react-table": "^8.17.3",
"@types/eslint__js": "^8.42.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"lucide-react": "^0.436.0",
"next-themes": "^0.3.0",
"pino": "^9.1.0",
"pino-pretty": "^11.0.0",
"react": "^18.2.0",
"react-day-picker": "^8.10.1",
"react-dom": "^18.2.0",
"react-hook-form": "^7.52.2",
"react-json-view": "^1.21.3",
"sonner": "^1.4.41",
"tailwind-merge": "^2.5.2",
"tailwind-scrollbar-hide": "^1.1.7",
"tailwindcss-animate": "^1.0.7",
"use-debounce": "^10.0.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/compat": "^1.0.1",
"@eslint/js": "^9.3.0",
"@playwright/test": "^1.47.2",
"@tanstack/eslint-plugin-query": "^5.35.6",
"@tanstack/router-devtools": "^1.33.4",
"@tanstack/router-vite-plugin": "^1.32.17",
"@types/node": "^20.12.12",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"@vitest/coverage-v8": "^2.0.5",
"autoprefixer": "^10.4.19",
"eslint": "^9.8.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.6",
"globals": "^15.3.0",
"postcss": "^8.4.38",
"prettier": "3.2.5",
"tailwindcss": "^3.4.3",
"typescript": "^5.2.2",
"typescript-eslint": "^7.9.0",
"vite": "^5.2.0",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^2.0.5"
},
"resolutions": {
"strip-ansi": "6.0.1"
}
}