-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1005 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 1005 Bytes
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
{
"name": "@profullstack/meshhook",
"private": true,
"type": "module",
"license": "MIT",
"scripts": {
"mh": "node packages/cli/bin/mh.js",
"postinstall": "echo \"✅ MeshHook workspace installed\"",
"format": "prettier -w .",
"setup": "node scripts/setup.js",
"dev": "cd apps/web && pnpm run dev",
"build": "cd apps/web && pnpm run build",
"db:migrate": "node scripts/db-migrate.js",
"db:migrate:local": "pnpx supabase migrations up",
"db:migrate:production": "pnpx supabase db push --linked --include-all",
"db:verify": "node scripts/verify-migration.js",
"issue:progress": "node scripts/gh-project-status.js",
"issue:done": "node scripts/gh-project-status.js",
"start": "node workers/orchestrator.mjs"
},
"devDependencies": {
"dotenv": "^17.2.3",
"inquirer": "^12.9.6",
"pg": "^8.16.3",
"prettier": "^3.3.3"
},
"dependencies": {
"fast-xml-parser": "^5.3.0",
"jmespath": "^0.16.0",
"openai": "^6.3.0"
}
}