forked from axonivy/process-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.94 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
{
"private": true,
"name": "parent",
"version": "11.4.0-next",
"engines": {
"node": ">=20.10.0"
},
"volta": {
"node": "22.11.0"
},
"scripts": {
"ci": "npm install && npm run build && npm run type && npm run package && (npm run lint:ci || true) && npm run test:ci && npm run i18n:ci",
"clean": "lerna run clean",
"build": "tsc --build && tscp --build",
"package": "lerna run package",
"type": "lerna run type",
"lint": "eslint",
"lint:ci": "eslint -o eslint.xml -f checkstyle",
"lint:fix": "eslint --fix",
"lint:inspect": "eslint --inspect-config",
"i18n:extract": "i18next",
"i18n:ci": "i18next --fail-on-update",
"protocol:inscription": "npm run -w @axonivy/process-editor-inscription-protocol",
"dev": "npm run -w @axonivy/standalone-integration dev",
"dev:viewer": "npm run -w @axonivy/viewer-integration dev",
"dev:eclipse": "npm run -w @axonivy/eclipse-integration dev",
"dev:inscription": "npm run -w @axonivy/inscription-standalone dev",
"test": "vitest test",
"test:ci": "vitest test --watch=false --reporter=basic --reporter=junit --outputFile=report.xml",
"webtest": "npm run -w @axonivy/process-editor-playwright webtest",
"update:axonivy:next": "npx --yes npm-check-updates @axonivy* -ws -t patch -u",
"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": "~13.1.0-next.608",
"@lerna-lite/cli": "^3.12.1",
"@lerna-lite/publish": "^3.12.1",
"@lerna-lite/run": "^3.12.1",
"@lerna-lite/version": "^3.12.1",
"@types/node": "^22.10.7",
"i18next-parser": "^9.3.0",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"typescript": "^5.7.3",
"typescript-cp": "^0.1.9",
"vitest": "^3.0.3"
},
"workspaces": {
"packages": [
"packages/*",
"integration/*",
"playwright"
]
}
}