-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 783 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 783 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
{
"name": "axiom-mcp-monorepo",
"version": "1.0.1",
"private": true,
"license": "MIT",
"packageManager": "npm@10.9.2",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"deploy": "turbo run deploy",
"deploy:dev": "turbo run deploy:dev",
"deploy:staging": "turbo run deploy:staging",
"deploy:prod": "turbo run deploy:prod",
"lint": "turbo run lint",
"type-check": "turbo run type-check",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"gen:types": "turbo run gen:types"
},
"devDependencies": {
"@biomejs/biome": "2.0.6",
"@types/node": "^24.0.7",
"turbo": "^2.5.5",
"typescript": "^5.8.3",
"ultracite": "5.0.26"
}
}