forked from finos/architecture-as-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 4.31 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 4.31 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@finos/calm-workspace",
"version": "0.0.0",
"private": true,
"engines": {
"node": "^22.14.0 || >=24.10.0"
},
"workspaces": [
"calm-models",
"calm-widgets",
"calm-ai",
"shared",
"cli",
"calm-server",
"docs",
"calm-hub-ui",
"calm-plugins/vscode"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"build:calm-server": "npm run build --workspace calm-models --workspace calm-widgets --workspace shared --workspace calm-server",
"build:cli": "npm run build --workspace calm-models --workspace calm-widgets --workspace shared --workspace cli",
"build:shared": "npm run build --workspace calm-models --workspace calm-widgets --workspace shared",
"build:calm-widgets": "npm run build --workspace calm-models --workspace calm-widgets",
"build:docs": "npm run build --workspace docs",
"test": "npm run test --workspaces --if-present",
"test:calm-server": "npm run build:calm-server && npm run test --workspace calm-server",
"test:cli": "npm run build:cli && npm run test --workspace cli",
"test:shared": "npm run build:shared && npm run test --workspace shared",
"test:models": "npm run build:calm-models && npm run test --workspace calm-models",
"test:calm-widgets": "npm run build:calm-widgets && npm run test --workspace calm-widgets",
"test:vscode": "npm run build:shared && npm run test --workspace calm-plugins/vscode",
"package:vscode": "npm run build:shared && npm run package --workspace calm-plugins/vscode",
"lint": "npm run lint --workspaces --if-present",
"lint-fix": "npm run lint-fix --workspaces --if-present",
"watch": "run-p watch:cli watch:shared",
"watch:cli": "npm run watch --workspace cli",
"watch:shared": "npm run watch --workspace shared",
"watch:models": "npm run watch --workspace calm-models",
"watch:calm-widgets": "npm run watch --workspace calm-widgets",
"link:calm-server": "npm link --workspace calm-server",
"link:cli": "npm link --workspace cli",
"calm-hub-ui:run": "npm run start --workspace calm-hub-ui",
"calm-hub-ui:prod": "npm run prod --workspace calm-hub-ui",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^20.0.0",
"@commitlint/config-conventional": "^20.0.0",
"@stoplight/types": "^14.1.1",
"@types/js-yaml": "^4.0.9",
"@types/json-pointer": "^1.0.34",
"@types/junit-report-builder": "^3.0.2",
"@types/lodash": "^4.17.16",
"@types/node": "^22.19.15",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"@vitest/coverage-v8": "^3.1.1",
"@vitest/ui": "^3.1.4",
"ajv": "^8.18.0",
"axios-mock-adapter": "^2.1.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.39.2",
"fetch-mock": "^12.5.2",
"globals": "^16.0.0",
"husky": "^9.1.7",
"link": "^2.1.1",
"memfs": "^4.17.0",
"msw": "^2.7.3",
"npm-run-all2": "^8.0.0",
"typescript": "^5.9.2",
"vitest": "^3.1.1"
},
"overrides": {
"@types/node": "^22.19.15",
"dompurify": "^3.3.3",
"on-headers": "^1.1.0",
"node-forge": "^1.3.2",
"qs": "^6.15.0",
"lodash": "^4.18.1",
"lodash-es": "^4.18.1",
"picomatch": "^4.0.4",
"@semantic-release/npm": {
"npm": "11.12.1"
},
"serialize-javascript": "^7.0.5",
"@stoplight/spectral-ruleset-bundler@1.6.x": {
"rollup": "2.80.0"
},
"eslint": {
"minimatch": "^3.1.4"
},
"copyfiles": {
"minimatch": "^3.1.4"
},
"@stoplight/spectral-core": {
"minimatch": "^3.1.4"
},
"eslint-plugin-react": {
"minimatch": "^3.1.4"
},
"eslint-plugin-import": {
"minimatch": "^3.1.4"
},
"commitizen": {
"minimatch": "^3.1.4"
},
"serve-handler": {
"minimatch": "^3.1.4"
},
"@vscode/vsce": {
"minimatch": "^3.1.4"
}
}
}