forked from likec4/likec4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.07 KB
/
package.json
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
{
"name": "root",
"version": "1.14.0",
"private": true,
"license": "MIT",
"packageManager": "[email protected]",
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"engines": {
"node": "^20.17.0"
},
"scripts": {
"fmt": "dprint fmt",
"prepare": "husky install",
"build": "turbo run build --filter='!@likec4/docs-astro' --filter='!@likec4/playground'",
"build:all": "turbo run build",
"typecheck": "turbo run typecheck --filter='!@likec4/docs-astro'",
"typecheck:all": "turbo run typecheck",
"ci:generate": "turbo run generate --filter='!@likec4/docs-astro' --filter='!@likec4/playground'",
"ci:typecheck": "turbo run typecheck --filter='!@likec4/docs-astro' --filter='!@likec4/playground'",
"ci:build": "turbo run build --filter='!@likec4/docs-astro' --filter='!@likec4/playground'",
"ci:test": "vitest run --reporter=basic --reporter=github-actions --no-isolate",
"vscode:typecheck": "turbo run typecheck --filter='!@likec4/docs-astro'",
"release": "shipjs prepare",
"clean": "turbo run clean",
"git:pre-commit": "lint-staged",
"test": "vitest run --no-isolate",
"test:watch": "vitest --no-isolate",
"test:e2e": "NODE_ENV=production turbo run package --filter='likec4' && cd e2e && yarn install && yarn bootstrap && yarn test",
"vitest:ui": "vitest --ui --no-isolate"
},
"devDependencies": {
"@types/node": "^20.16.5",
"@vitest/ui": "^2.1.3",
"dprint": "0.47.2",
"esbuild": "^0.24.0",
"execa": "^9.3.1",
"global": "^4.4.0",
"husky": "^8.0.3",
"lint-staged": "15.2.10",
"npm-run-all2": "^6.2.2",
"shipjs": "^0.26.4",
"tsx": "~4.9.3",
"turbo": "^2.1.3",
"typescript": "^5.6.3",
"vite": "5.4.9",
"vitest": "^2.1.3"
},
"resolutions": {
"vscode-jsonrpc": "8.2.0",
"vscode-languageclient": "9.0.1",
"vscode-languageserver": "9.0.1",
"vscode-languageserver-protocol": "3.17.5",
"vscode-languageserver-types": "3.17.5",
"vscode-uri": "3.0.8"
},
"lint-staged": {
"**/*.{ts,tsx,mjs,js,jsx}": [
"dprint fmt"
]
}
}