-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.08 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 3.08 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
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
{
"name": "tari-universe",
"private": true,
"version": "1.6.11",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "node ./scripts/tauri-wrapper.js",
"lint": "eslint src/ && knip && tsc",
"lint:fix": "eslint src/ --fix",
"lint:taplo": "taplo format --check",
"translate": "node ./scripts/translator.js",
"knip": "knip",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@floating-ui/react": "^0.27.17",
"@lottiefiles/dotlottie-react": "^0.15.2",
"@number-flow/react": "^0.5.11",
"@tanstack/react-query": "^5.90.20",
"@tari-project/tari-tower": "^0.2.1",
"@tari-project/wxtm-bridge-backend-api": "^0.1.64",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-os": "^2.3.2",
"@tauri-apps/plugin-shell": "^2.3.5",
"emoji-regex": "^10.6.0",
"ethers": "^6.16.0",
"hls.js": "^1.6.14",
"i18next": "^25.8.0",
"i18next-browser-languagedetector": "^8.2.0",
"i18next-http-backend": "^3.0.2",
"motion": "^12.29.2",
"react": "^19.2.4",
"react-countdown": "^2.3.6",
"react-dom": "^19.2.4",
"react-hook-form": "^7.71.1",
"react-i18next": "^15.7.4",
"react-icons": "^5.5.0",
"react-intersection-observer": "^10.0.2",
"react-markdown": "^10.1.0",
"styled-components": "^6.3.8",
"use-sync-external-store": "^1.6.0",
"uuid": "^13.0.0",
"vite-tsconfig-paths": "^5.1.4",
"zustand": "^5.0.10"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@nabla/vite-plugin-eslint": "^2.0.6",
"@taplo/cli": "^0.7.0",
"@tauri-apps/cli": "^2.10.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/node": "^24.10.9",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/parser": "^8.46.4",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/coverage-v8": "^3.2.4",
"babel-plugin-react-compiler": "^19.1.0-rc.2",
"babel-plugin-styled-components": "^2.1.4",
"dotenv": "^17.2.3",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-i18next": "^6.1.3",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-compiler": "^19.1.0-rc.2",
"eslint-plugin-react-hooks": "^6.1.1",
"globals": "^16.5.0",
"jsdom": "^26.1.0",
"knip": "^5.82.1",
"prettier": "^3.8.1",
"react-qrcode-logo": "^4.0.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.55.0",
"vite": "^7.3.1",
"vitest": "^3.2.4"
},
"overrides": {
"minimatch": ">=10.2.1"
}
}