forked from LatterFixxx/LatterFix-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.32 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
{
"name": "latterfix-frontend",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"lint": "eslint .",
"format": "prettier . --write",
"test": "vitest run",
"test:watch": "vitest"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"@creit.tech/stellar-wallets-kit": "^1.9.5",
"@hello-pangea/dnd": "^18.0.1",
"@sentry/react": "^10.39.0",
"@stellar/design-system": "^3.2.5",
"@stellar/stellar-sdk": "^16.0.1",
"@stellar/stellar-xdr-json": "^23.0.0",
"@tailwindcss/vite": "^4.2.0",
"@tanstack/react-query": "^5.90.21",
"axios": "^1.13.5",
"crypto-js": "^4.2.0",
"date-fns": "^4.1.0",
"framer-motion": "^12.34.3",
"i18next": "^25.8.13",
"lossless-json": "^4.3.0",
"lucide-react": "^1.23.0",
"qrcode.react": "^4.2.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-i18next": "^16.5.4",
"react-joyride": "^2.9.3",
"react-router-dom": "^7.9.6",
"recharts": "^3.7.0",
"socket.io-client": "^4.8.3",
"sonner": "^2.0.7",
"tailwindcss": "^4.2.0",
"zod": "^4.1.13",
"zustand": "^5.0.11"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/crypto-js": "^4.2.2",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.21",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react": "^5.1.1",
"concurrently": "^9.2.1",
"dotenv": "^17.2.3",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-dom": "^2.3.11",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.24",
"eslint-plugin-react-x": "^5.10.3",
"fast-check": "^4.5.3",
"glob": "^13.0.0",
"globals": "^16.5.0",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"lint-staged": "^16.2.7",
"prettier": "3.6.2",
"typescript": "~5.9.3",
"typescript-eslint": "^8.48.1",
"vite": "^7.2.6",
"vite-plugin-node-polyfills": "^0.24.0",
"vite-plugin-wasm": "^3.5.0",
"vitest": "^4.0.18"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}