-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.02 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.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
{
"name": "settlegrid",
"private": true,
"packageManager": "npm@10.8.2",
"workspaces": [
"apps/*",
"packages/*",
"examples/*"
],
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"test": "turbo test",
"lint": "turbo lint",
"extract-prospects": "npx tsx scripts/extract-mcp-developers.ts",
"update-templates": "npx tsx scripts/update-template-readmes.ts",
"gridbot": "npx tsx scripts/gridbot/index.ts",
"gridbot:schedule": "npx tsx scripts/gridbot/scheduler.ts",
"audit:canonical-50": "node scripts/audit/canonical-50.mjs",
"build:registry": "tsx scripts/build-registry.ts",
"polish:canonical": "tsx scripts/polish-canonical.ts",
"shadow:crawl": "tsx scripts/shadow-crawler/index.ts",
"codemod": "node scripts/codemods/runner.mjs",
"codemod:sdk-bump": "node scripts/codemods/runner.mjs sdk-version-bump"
},
"devDependencies": {
"jscodeshift": "^17.3.0",
"tsx": "^4.0.0",
"turbo": "^2.3.0"
},
"dependencies": {
"pg": "^8.20.0"
}
}