-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.9 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.9 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": "mcp-registry-growth",
"version": "1.0.0",
"description": "Analytics dashboard for MCP server registry growth tracking",
"private": true,
"scripts": {
"dev": "next dev",
"build": "npm run convert-csv && next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"type-check": "tsc --noEmit",
"convert-csv": "node scripts/convert-csv-to-json.js",
"build:prod": "npm run convert-csv && cross-env NODE_ENV=production next build",
"verify-build": "node scripts/verify-build.js",
"deploy:check": "npm run build:prod && npm run verify-build",
"preview": "npm run build && npx serve out"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dend/mcp-registry-growth.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dend/mcp-registry-growth/issues"
},
"homepage": "https://github.com/dend/mcp-registry-growth#readme",
"dependencies": {
"@types/node": "^24.5.1",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"csv-parse": "^6.1.0",
"lucide-react": "^0.544.0",
"next": "^15.5.3",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"recharts": "^3.2.1",
"tailwind-merge": "^3.3.1",
"typescript": "^5.9.2"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.2",
"@playwright/test": "^1.55.0",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@types/csv-parse": "^1.1.12",
"@types/jest": "^30.0.0",
"autoprefixer": "^10.4.21",
"cross-env": "^10.0.0",
"eslint-config-next": "^15.5.3",
"eslint-config-prettier": "^10.1.8",
"jest": "^30.1.3",
"jest-environment-jsdom": "^30.1.2",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"tailwindcss": "^3.4.17"
}
}