forked from axonivy/process-editor-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.63 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
{
"private": true,
"name": "parent",
"version": "11.4.0-next",
"engines": {
"node": ">=20.10.0"
},
"volta": {
"node": "20.15.0"
},
"scripts": {
"ci": "npm install && npm run build && npm run package && npm run lint:ci && npm run test:ci",
"clean": "lerna run clean",
"build": "tsc --build && tscp --build",
"package": "lerna run package",
"type": "lerna run type",
"lint": "lerna run lint --",
"lint:ci": "npm run lint -- -o eslint.xml -f checkstyle",
"lint:fix": "lerna run --parallel lint:fix --",
"dev": "npm run --workspace=@axonivy/standalone-integration dev",
"dev:viewer": "npm run --workspace=@axonivy/viewer-integration dev",
"dev:eclipse": "npm run --workspace=@axonivy/eclipse-integration dev",
"test": "lerna run test",
"test:ci": "lerna run test:ci",
"webtest": "lerna run webtest --",
"update:axonivy:next": "npx --yes npm-check-updates @axonivy* -ws -t patch -u && npm install && npm dedupe",
"publish:next": "lerna publish --exact --canary --preid next --pre-dist-tag next --no-git-tag-version --no-push --ignore-scripts --yes"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-no-null": "^1.0.2",
"lerna": "^8.1.5",
"prettier": "^2.8.0",
"rimraf": "^5.0.5",
"typescript": "^5.3.3",
"typescript-cp": "^0.1.9"
},
"workspaces": {
"packages": [
"packages/*",
"integration/*",
"playwright"
]
}
}