-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.74 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.74 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
{
"name": "@axonivy/vscode-designer-root",
"private": true,
"engines": {
"node": ">=20.19.0"
},
"volta": {
"node": "24.11.0"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "pnpm run -r build",
"build:production": "pnpm run -r build:production",
"engine:download": "node scripts/download-engine.mts",
"openapi": "pnpm run openapi:download && pnpm run openapi:codegen",
"openapi:download": "mvn clean validate && curl -o target/market/openapi.json https://market.axonivy.com/stable/v3/api-docs --create-dirs",
"openapi:codegen": "orval",
"market:generate": "pnpm run --filter vscode-designer-14 generate:market",
"clean": "pnpm run -r clean",
"lint": "eslint",
"lint:ci": "eslint -o eslint.xml -f checkstyle",
"lint:fix": "eslint --fix",
"lint:inspect": "eslint --inspect-config",
"package": "pnpm run -r package",
"publish:next": "pnpm run -r publish:next",
"sbom": "pnpm dlx @cyclonedx/cdxgen -t pnpm",
"test": "pnpm run -r test",
"test:ci": "pnpm run -r test:ci",
"test:playwright": "pnpm run --filter @axonivy/vscode-designer-playwright test:ui",
"test:playwright:browser": "RUN_IN_BROWSER=true pnpm run test:playwright",
"test:playwright:download:vscode": "pnpm run --filter @axonivy/vscode-designer-playwright download:vscode",
"test:playwright:performance": "pnpm run --filter @axonivy/vscode-designer-playwright test:ui:performance",
"type": "pnpm run -r type",
"update:axonivy:next": "npx --yes npm-check-updates @axonivy* -ws -t semver -u",
"raise:version": "lerna version --allow-peer-dependencies-update --no-git-tag-version --no-push --ignore-scripts --exact --yes",
"watch": "pnpm run -r --parallel watch"
},
"devDependencies": {
"@axonivy/eslint-config": "~14.0.0-next.1052.3015124",
"@axonivy/prettier-config": "~14.0.0-next.1052.3015124",
"@axonivy/ts-config": "~14.0.0-next.1052.3015124",
"@lerna-lite/cli": "^4.0.0",
"@lerna-lite/run": "^4.0.0",
"@lerna-lite/version": "^4.0.0",
"@types/adm-zip": "^0.5.7",
"@types/node": "24.12.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "5.1.4",
"adm-zip": "0.5.16",
"globals": "17.4.0",
"i18next": "^25.0.0",
"orval": "8.5.2",
"path": "0.12.7",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-i18next": "^16.0.0",
"reflect-metadata": "0.2.2",
"rimraf": "6.1.3",
"ts-loader": "9.5.4",
"typescript": "5.9.3",
"vite": "7.3.1",
"vite-tsconfig-paths": "6.1.1"
},
"overrides": {
"vscode-jsonrpc": "8.2.1",
"@eclipse-glsp/sprotty": "2.6.0"
},
"workspaces": [
"extension",
"webviews/*",
"playwright/"
],
"prettier": "@axonivy/prettier-config"
}