forked from Vynix-Labs/Soroban-state-lens
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.92 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
{
"name": "soroban-state-lens",
"version": "0.1.0",
"description": "Soroban State Lens is a high-performance, open-source visual debugger and state explorer for Soroban smart contracts.",
"author": "Vynix-Labs",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Vynix-Labs/Soroban-state-lens.git"
},
"private": true,
"type": "module",
"engines": {
"node": ">=20.0.0",
"bun": ">=1.0.0"
},
"scripts": {
"dev": "vite --port 3000",
"build": "vite build && tsc",
"preview": "vite preview",
"test": "vitest run",
"lint": "eslint",
"format": "prettier",
"check": "prettier --write . && eslint --fix",
"check:env": "node scripts/check-env.js",
"issues:build": "node scripts/github-issues.mjs build",
"issues:list": "node scripts/github-issues.mjs list",
"issues:labels": "node scripts/github-issues.mjs labels",
"issues:publish": "node scripts/github-issues.mjs publish"
},
"dependencies": {
"@stellar/design-system": "^3.2.7",
"@stellar/stellar-sdk": "^14.5.0",
"@tailwindcss/vite": "^4.0.6",
"@tanstack/react-devtools": "^0.7.0",
"@tanstack/react-router": "^1.157.11",
"@tanstack/react-router-devtools": "^1.157.11",
"@tanstack/router-plugin": "^1.157.11",
"comlink": "^4.4.2",
"lucide-react": "^0.545.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"sass": "^1.97.3",
"tailwindcss": "^4.0.6",
"zustand": "^5.0.11"
},
"devDependencies": {
"@tanstack/devtools-vite": "^0.3.11",
"@tanstack/eslint-config": "^0.3.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.2.0",
"@types/node": "^22.10.2",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^5.0.4",
"jsdom": "^27.0.0",
"prettier": "^3.5.3",
"typescript": "^5.7.2",
"vite": "^7.1.7",
"vitest": "^4.0.18",
"web-vitals": "^5.1.0"
}
}