forked from likec4/likec4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.52 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.52 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
72
73
74
75
76
77
78
79
{
"name": "root",
"version": "1.31.0",
"private": true,
"license": "MIT",
"packageManager": "pnpm@10.11.0",
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"engines": {
"node": ">=20.19.1"
},
"scripts": {
"prepare": "node .husky/install.mjs",
"fmt": "dprint fmt",
"build": "turbo run build --filter=\"!@likec4/docs-astro\"",
"build:all": "turbo run build",
"typecheck": "turbo run typecheck --filter=\"!@likec4/docs-astro\"",
"typecheck:all": "turbo run typecheck",
"generate": "turbo run generate --filter=\"!@likec4/docs-astro\"",
"generate:all": "turbo run generate",
"ci:typecheck": "turbo run typecheck --filter=\"!@likec4/docs-astro\"",
"ci:build": "turbo run build --filter=\"!@likec4/docs-astro\"",
"ci:test": "vitest run --no-isolate",
"vscode:typecheck": "turbo run typecheck --filter=\"!@likec4/docs-astro\"",
"release": "shipjs prepare",
"clean": "turbo run clean",
"git:pre-commit": "nano-staged",
"test": "vitest run --no-isolate",
"test:watch": "vitest --no-isolate",
"test:e2e": "NODE_ENV=production turbo run pack --filter=\"@likec4/core\" --filter=\"likec4\" && cd e2e && pnpm install && pnpm install:chromium && pnpm bootstrap && pnpm test",
"vitest:ui": "vitest --ui --no-isolate"
},
"devDependencies": {
"@types/node": "catalog:",
"@vitest/ui": "catalog:vitest",
"dprint": "^0.50.0",
"esbuild": "catalog:esbuild",
"execa": "^9.5.3",
"global": "^4.4.0",
"husky": "^9.1.7",
"nano-staged": "^0.8.0",
"npm-run-all2": "^7.0.1",
"shipjs": "^0.27.0",
"tsx": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:",
"vite": "catalog:vite",
"vitest": "catalog:vitest"
},
"pnpm": {
"overrides": {
"esbuild": "catalog:esbuild",
"react": "catalog:react",
"react-dom": "catalog:react",
"@types/react": "catalog:react",
"@types/react-dom": "catalog:react",
"vscode-jsonrpc": "catalog:vscode",
"vscode-languageclient": "catalog:vscode",
"vscode-languageserver": "catalog:vscode",
"vscode-languageserver-protocol": "catalog:vscode",
"vscode-languageserver-types": "catalog:vscode",
"vscode-oniguruma": "catalog:vscode",
"vscode-uri": "catalog:vscode",
"type-fest": "catalog:utils",
"mnemonist": "0.40.3"
},
"patchedDependencies": {
"mnemonist@0.40.3": "patches/mnemonist@0.40.3.patch"
}
},
"nano-staged": {
"**/*.{ts,tsx,mjs,js,jsx}": [
"dprint fmt"
]
}
}