-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 2.24 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 2.24 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
{
"private": true,
"name": "@axonivy/process-editor-root",
"version": "11.4.0-next",
"engines": {
"node": ">=20.19"
},
"volta": {
"node": "24.14.1"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"ci": "pnpm install --no-frozen-lockfile && pnpm run build && pnpm run type && pnpm run package && (pnpm run lint:ci || true) && pnpm run test:ci && pnpm run i18n:ci",
"clean": "pnpm run -r clean",
"build": "tsc --build && tscp --build",
"package": "pnpm run -r package",
"type": "pnpm run -r type",
"lint": "eslint",
"lint:ci": "eslint -o eslint.xml -f checkstyle",
"lint:fix": "eslint --fix",
"lint:inspect": "eslint --inspect-config",
"i18n": "i18next-cli extract",
"i18n:ci": "i18next-cli extract --ci --dry-run",
"protocol:inscription": "pnpm run --filter @axonivy/process-editor-inscription-protocol",
"dev": "pnpm run --filter @axonivy/process-editor-standalone dev",
"dev:viewer": "pnpm run --filter @axonivy/process-editor-viewer dev",
"dev:eclipse": "pnpm run --filter @axonivy/process-editor-eclipse dev",
"dev:inscription": "pnpm run --filter @axonivy/process-editor-inscription-standalone dev",
"test": "vitest test",
"test:ci": "vitest run --reporter=default --reporter=junit --outputFile=report.xml",
"webtest": "pnpm run --filter @axonivy/process-editor-playwright webtest",
"update:axonivy:next": "npx --yes npm-check-updates @axonivy* -w -c 0 -t semver -u",
"raise:version": "lerna version --no-git-tag-version --no-push --ignore-scripts --exact --yes",
"publish:next": "lerna publish --exact --canary --preid next --pre-dist-tag next --no-git-tag-version --no-push --ignore-scripts --yes"
},
"devDependencies": {
"@axonivy/eslint-config": "~14.0.0-next.1101.a7eaf61",
"@axonivy/prettier-config": "~14.0.0-next.1101.a7eaf61",
"@axonivy/ts-config": "~14.0.0-next.1101.a7eaf61",
"@lerna-lite/cli": "^5.0.0",
"@lerna-lite/publish": "^5.0.0",
"@lerna-lite/version": "^5.0.0",
"@types/node": "^24.0.0",
"i18next-cli": "^1.21.1",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"typescript": "^6.0.0",
"typescript-cp": "^0.1.9",
"vitest": "^4.0.0",
"vite": "^8.0.0"
},
"prettier": "@axonivy/prettier-config"
}