forked from ezedike-evan/stellar-intel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.66 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.66 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
{
"name": "stellar-intel",
"version": "0.1.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "next dev",
"build": "node ./scripts/emit-version.js && next build",
"start": "next start",
"lint": "eslint --max-warnings 0",
"lint:fix": "eslint --fix",
"typecheck": "tsc --noEmit",
"type-check": "tsc --noEmit",
"format": "prettier --write \"**/*.{ts,tsx,mjs,json,css,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,mjs,json,css,md}\"",
"test": "vitest run",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"check:registry": "node ./scripts/check-registry.mjs",
"validate:anchors": "node ./scripts/validate-anchors.mjs",
"emit-version": "node ./scripts/emit-version.js",
"test:release": "npm run typecheck && npm run lint && npm run format:check && npm run test && npm run build",
"emit-openapi": "tsx --tsconfig tsconfig.scripts.json scripts/emit-openapi.mts",
"init-oracle-registry": "tsx --tsconfig tsconfig.scripts.json scripts/init-oracle-registry.ts",
"prepare": "husky || true"
},
"lint-staged": {
"*.{ts,tsx,mjs}": [
"eslint --fix --max-warnings 0",
"prettier --write"
],
"*.{json,css,md,yml,yaml}": [
"prettier --write"
]
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^8.5.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@stellar/freighter-api": "^6.0.1",
"@stellar/stellar-sdk": "^16.0.1",
"clsx": "^2.1.1",
"lucide-react": "^1.11.0",
"next": "16.2.9",
"pino": "^10.3.1",
"react": "19.2.7",
"react-dom": "19.2.7",
"swr": "^2.4.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@playwright/test": "^1.60.0",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^26",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript-eslint/eslint-plugin": "^8.62.0",
"@typescript-eslint/parser": "^8.62.0",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.9",
"better-sqlite3": "^12.10.0",
"eslint": "^10",
"eslint-config-next": "16.2.9",
"eslint-config-prettier": "^10.1.8",
"fast-check": "^4.7.0",
"happy-dom": "^20.9.0",
"jsdom": "^29.0.2",
"lint-staged": "^17.0.7",
"msw": "^2.13.2",
"prettier": "^3.8.2",
"tailwindcss": "^4",
"tsx": "^4.22.4",
"typescript": "^6",
"typescript-eslint": "^8.62.0",
"vitest": "^4.1.4"
}
}