-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.16 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.16 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
{
"name": "express-cli-monorepo",
"private": true,
"homepage": "https://create-express-forge.js.org",
"repository": {
"type": "git",
"url": "git+https://github.com/CODE-Y02/express-cli.git"
},
"bugs": {
"url": "https://github.com/CODE-Y02/express-cli/issues"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "biome format --write .",
"check-types": "turbo run check-types",
"test": "turbo run test",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm run build && pnpm run test && changeset publish",
"docs:dev": "cd docs && pnpm run dev",
"docs:build": "cd docs && pnpm run build",
"docs:preview": "cd docs && pnpm run preview",
"mcp:dev": "pnpm --filter @create-express-forge/mcp dev",
"mcp:start": "pnpm --filter @create-express-forge/mcp start",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^2.4.13",
"@changesets/cli": "^2.27.7",
"husky": "^9.1.7",
"turbo": "^2.0.9",
"typescript": "5.5.3"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18"
}
}