-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.21 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 3.21 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
{
"name": "elghellav1",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:clean": "node scripts/dev-clean.js",
"dev:fresh": "rm -rf .next && npm run dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"analyze": "ANALYZE=true next build",
"build:prod": "NODE_ENV=production next build",
"start:prod": "NODE_ENV=production next start",
"performance": "next build && next start",
"optimize": "npm run build:prod && npm run analyze",
"clean": "if exist .next rmdir /s /q .next && if exist node_modules\\.cache rmdir /s /q node_modules\\.cache && if exist .swc rmdir /s /q .swc",
"clean:all": "if exist .next rmdir /s /q .next && if exist node_modules\\.cache rmdir /s /q node_modules\\.cache && if exist .swc rmdir /s /q .swc && if exist node_modules rmdir /s /q node_modules && if exist package-lock.json del package-lock.json && npm install",
"test:mcp-supabase": "node mcp-supabase-fixed.js",
"test:mcp-gibsonai": "node mcp-gibsonai-fixed.js",
"test:mcp-bucket": "node mcp-file-manager.js list",
"test:mcp-postmark": "node mcp-email-manager.js logs",
"test:mcp-peekaboo": "node mcp-web-scraper.js prices",
"test:mcp-admin": "node mcp-admin-panel.js dashboard",
"admin:all": "node mcp-admin-panel.js all",
"admin:users": "node mcp-admin-panel.js users",
"admin:add": "node mcp-admin-panel.js add-admin",
"admin:add-id": "node mcp-admin-panel.js add-admin-id",
"admin:remove": "node mcp-admin-panel.js remove-admin",
"admin:list": "node mcp-admin-panel.js list-admins",
"admin:emails": "node mcp-admin-panel.js emails",
"admin:files": "node mcp-admin-panel.js files",
"admin:notifications": "node mcp-admin-panel.js notifications",
"admin:reports": "node mcp-admin-panel.js reports"
},
"dependencies": {
"@emotion/is-prop-valid": "^1.3.1",
"@emotion/react": "^11.14.0",
"@modelcontextprotocol/sdk": "^1.17.1",
"@supabase/supabase-js": "^2.52.0",
"@tanstack/react-query": "^5.0.0",
"axios": "^1.11.0",
"cheerio": "^1.1.2",
"clsx": "^2.1.1",
"critters": "^0.0.23",
"date-fns": "^3.6.0",
"dotenv": "^17.2.1",
"framer-motion": "^11.18.2",
"leaflet": "^1.9.4",
"lucide-react": "^0.525.0",
"next": "15.3.5",
"nodemailer": "^7.0.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.50.0",
"react-hot-toast": "^2.4.1",
"react-intersection-observer": "^9.8.0",
"tailwind-merge": "^2.6.0",
"web-vitals": "^3.5.2",
"workbox-webpack-plugin": "^7.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/leaflet": "^1.9.20",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"compression-webpack-plugin": "^11.1.0",
"css-minimizer-webpack-plugin": "^6.0.0",
"eslint": "^9",
"eslint-config-next": "15.3.5",
"tailwindcss": "^4",
"terser-webpack-plugin": "^5.3.10",
"typescript": "^5",
"webpack-bundle-analyzer": "^4.10.1"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"browserslist": [
">0.3%",
"not dead",
"not op_mini all"
]
}