-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.84 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "gui",
"description": "The Balancer GUI is a powerful, user-friendly Progressive Web Application designed to streamline the configuration and management of the Balancer API.",
"private": false,
"version": "1.0.5",
"type": "module",
"scripts": {
"dev": "gui-environment --development && vite && sw-builder",
"build-development": "gui-environment --development && tsc -b && vite build && sw-builder",
"build-production": "gui-environment --production && tsc -b && vite build && sw-builder",
"preview": "gui-environment --production && vite preview && sw-builder",
"test": "echo \"Error: tests are executed with npm run test:(e2e|integration|unit|bench)\" && exit 1",
"test:e2e": "vitest run --config=vitest.test-e2e.config.ts",
"test:integration": "vitest run --config vitest.test-integration.config.ts",
"test:unit": "vitest run --config vitest.test-unit.config.ts",
"test:bench": "vitest bench",
"watch-test:e2e": "vitest --config=vitest.test-e2e.config.ts",
"watch-test:unit": "vitest --config vitest.test-unit.config.ts",
"watch-test:integration": "vitest --config vitest.test-integration.config.ts",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitcoin-balancer/gui"
},
"keywords": [
"bitcoin",
"trading",
"bitcoin-trading",
"strategy",
"trading-strategy",
"bitcoin-trading-strategy",
"spot",
"spot-market",
"bitcoin-spot-market",
"automated",
"self-hosted"
],
"author": "Jesus Graterol",
"license": "MIT",
"bugs": {
"url": "https://github.com/bitcoin-balancer/gui/issues"
},
"dependencies": {
"@hookform/resolvers": "3.9.0",
"@radix-ui/react-accordion": "1.2.0",
"@radix-ui/react-dialog": "1.1.1",
"@radix-ui/react-dropdown-menu": "2.1.1",
"@radix-ui/react-label": "2.1.0",
"@radix-ui/react-popover": "1.1.1",
"@radix-ui/react-progress": "1.1.0",
"@radix-ui/react-select": "2.1.1",
"@radix-ui/react-separator": "1.1.0",
"@radix-ui/react-slot": "1.1.0",
"@radix-ui/react-switch": "1.1.0",
"@radix-ui/react-tabs": "1.1.0",
"@radix-ui/react-toast": "1.2.1",
"@radix-ui/react-tooltip": "1.1.2",
"altcha": "0.6.7",
"api-response-utils": "1.0.0",
"bignumber-utils": "1.0.2",
"browser-style-normalizer": "1.0.6",
"class-variance-authority": "0.7.0",
"clsx": "2.1.1",
"date-fns": "3.6.0",
"embla-carousel-autoplay": "8.3.0",
"embla-carousel-react": "8.3.0",
"error-message-utils": "1.1.1",
"fetch-request-browser": "1.0.5",
"input-otp": "1.2.4",
"lightweight-charts": "4.2.0",
"lucide-react": "0.414.0",
"react": "18.3.1",
"react-day-picker": "8.10.1",
"react-dom": "18.3.1",
"react-hook-form": "7.53.0",
"react-router-dom": "6.26.2",
"recharts": "2.13.0-alpha.4",
"socket.io-client": "4.8.0",
"sw-service": "1.1.1",
"tailwind-merge": "2.5.2",
"tailwindcss-animate": "1.0.7",
"webfont-ubuntu": "1.0.0",
"zod": "3.23.8",
"zustand": "4.5.5"
},
"devDependencies": {
"@testing-library/dom": "10.4.0",
"@testing-library/react": "16.0.1",
"@testing-library/user-event": "14.5.2",
"@types/node": "20.16.10",
"@types/react": "18.3.10",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@vitejs/plugin-react": "4.3.1",
"autoprefixer": "10.4.20",
"eslint": "8.57.1",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-react-refresh": "0.4.12",
"gui-environment": "1.0.6",
"jsdom": "24.1.3",
"postcss": "8.4.47",
"sw-builder": "1.0.7",
"tailwindcss": "3.4.13",
"typescript": "5.6.2",
"vite": "5.4.8",
"vitest": "1.6.0"
}
}