-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 3.06 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 3.06 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
{
"name": "bigrack-monorepo",
"version": "0.1.0",
"private": true,
"description": "BigRack.dev monorepo - MCP server for task/project & context management",
"license": "Apache-2.0",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"clean": "turbo run clean && rm -rf node_modules",
"fresh": "npm run clean && npm install",
"dev:mcp": "turbo run dev --filter=@bigrack/mcp",
"dev:api": "turbo run dev --filter=@bigrack/api",
"dev:dashboard": "turbo run dev --filter=@bigrack/dashboard",
"dev:website": "turbo run dev --filter=@bigrack/website",
"build:mcp": "turbo run build --filter=@bigrack/mcp",
"build:api": "turbo run build --filter=@bigrack/api",
"build:dashboard": "turbo run build --filter=@bigrack/dashboard",
"build:website": "turbo run build --filter=@bigrack/website",
"test:mcp": "turbo run test --filter=@bigrack/mcp",
"test:api": "turbo run test --filter=@bigrack/api",
"test:dashboard": "turbo run test --filter=@bigrack/dashboard",
"link:mcp": "cd packages/mcp && npm link",
"unlink:mcp": "npm unlink -g @bigrack/mcp",
"licenses:root": "node scripts/generate-third-party-licenses.js root THIRD-PARTY-LICENSES.md",
"licenses:mcp": "node scripts/generate-third-party-licenses.js packages/mcp packages/mcp/THIRD-PARTY-LICENSES.md",
"licenses:thirdparty": "npm run licenses:root && npm run licenses:mcp",
"licenses:add": "license-check-and-add add -f licenses/.licenserc.json",
"licenses:add:shadcn": "license-check-and-add add -f licenses/.licenserc.shadcn.json apps/dashboard/src/components/ui apps/website/components/ui packages/shared/src/components/ui",
"licenses:check": "license-check-and-add check -f licenses/.licenserc.json",
"licenses:check:shadcn": "license-check-and-add check -f licenses/.licenserc.shadcn.json apps/dashboard/src/components/ui apps/website/components/ui packages/shared/src/components/ui",
"package:mcp:build": "npm run build:mcp && cd packages/mcp && npm pack",
"package:mcp:push": "npm run build:mcp && cd packages/mcp && npm publish --access public",
"changeset": "changeset",
"changeset:add": "changeset add",
"changeset:version": "changeset version",
"changeset:status": "changeset status",
"version": "changeset version",
"prepare": "husky"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"glob": "^10.4.5",
"husky": "^9.1.7",
"license-check-and-add": "^4.0.5",
"prettier": "^3.1.1",
"shadcn": "^3.5.0",
"turbo": "^2.6.1",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=9.0.0"
},
"packageManager": "npm@11.6.4",
"overrides": {
"hono": "4.10.7",
"valibot": "1.2.0"
}
}