forked from Emmy123222/Stellar-Search
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.02 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 3.02 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
90
91
92
93
94
95
{
"name": "stellar-search",
"version": "1.0.0",
"private": true,
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"setup": "bash scripts/setup.sh",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"config:check": "tsx scripts/check-config.ts",
"lint": "eslint .",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:coverage:check": "vitest run --coverage --run",
"sbom": "cyclonedx-npm --package-lock-only --output-reproducible --output-format JSON --output-file sbom.cyclonedx.json",
"sbom:view": "cyclonedx-npm --package-lock-only --output-format JSON",
"server": "tsx server/index.ts",
"mcp": "tsx mcp-server/index.ts",
"dev:all": "concurrently \"npm run server\" \"npm run dev\"",
"search:cli": "tsx scripts/test-search.ts",
"test:search": "npm run search:cli -- \"Stellar blockchain\" --mode search",
"test:quote": "npm run search:cli -- \"Stellar blockchain\" --mode quote --json",
"test:suggestions": "npm run search:cli -- \"Stellar blockchain\" --mode search --count 3",
"reconcile:report": "tsx scripts/reconcile-report.ts",
"deploy": "npm run build && vercel --prod"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.30.0",
"@stellar/freighter-api": "^3.1.0",
"@stellar/stellar-sdk": "^14.0.0",
"@vercel/node": "^5.7.4",
"@x402/core": "^2.24.0",
"@x402/express": "^2.24.0",
"@x402/fetch": "^2.24.0",
"@x402/stellar": "^2.24.0",
"buffer": "^6.0.3",
"clsx": "^2.1.0",
"cors": "^2.8.5",
"dotenv": "^16.4.0",
"express": "^4.18.2",
"express-rate-limit": "^8.6.2",
"framer-motion": "^11.0.0",
"groq-sdk": "^0.9.0",
"helmet": "^8.3.0",
"i18next": "^26.4.0",
"lucide-react": "^0.344.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^17.0.12",
"recharts": "^3.10.1",
"sonner": "^2.0.8",
"winston": "^3.19.0"
},
"devDependencies": {
"@cyclonedx/cyclonedx-npm": "^6.0.1",
"@eslint/js": "^10.0.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.3",
"@testing-library/user-event": "^14.6.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^26.4.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/recharts": "^1.8.29",
"@types/supertest": "^7.2.1",
"@typescript-eslint/eslint-plugin": "^8.68.0",
"@typescript-eslint/parser": "^8.68.0",
"@vitejs/plugin-react": "^4.2.0",
"@vitest/coverage-v8": "^4.1.11",
"autoprefixer": "^10.5.4",
"concurrently": "^10.0.5",
"eslint": "^10.9.1",
"globals": "^17.11.0",
"jsdom": "^30.0.1",
"postcss": "^8.4.35",
"supertest": "^7.2.2",
"tailwindcss": "^4.3.3",
"tsx": "^4.23.12",
"typescript": "^6.0.0",
"vite": "^5.1.0",
"vitest": "^4.1.11"
},
"lint-staged": {
"*.{ts,tsx}": [
"bash -c 'tsc --noEmit'"
]
}
}