-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.46 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
{
"private": true,
"name": "parent",
"engines": {
"node": ">=20.10.0"
},
"volta": {
"node": "22.11.0"
},
"scripts": {
"ci": "npm install && npm run package && npm run type && (npm run lint:ci || true) && npm run test:ci",
"clean": "lerna run clean",
"build": "tsc --build && tscp --build",
"package": "lerna run package",
"watch": "concurrently 'tsc --build --watch' 'tscp --build --watch'",
"build:clean": "lerna run build:clean",
"type": "lerna run type",
"lint": "eslint",
"lint:ci": "eslint -o eslint.xml -f checkstyle",
"lint:fix": "eslint --fix",
"lint:inspect": "eslint --inspect-config",
"protocol": "npm run --workspace=@axonivy/form-editor-protocol",
"dev": "npm --prefix integrations/standalone run dev",
"test": "npm --prefix packages/editor 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",
"publish:next": "lerna publish --exact --canary --preid next --tag-version-prefix beta --pre-dist-tag next --no-git-tag-version --no-push --ignore-scripts --yes"
},
"devDependencies": {
"@axonivy/eslint-config": "~13.1.0-next.443",
"@types/node": "^22.10.2",
"concurrently": "^9.1.0",
"lerna": "^8.1.9",
"rimraf": "^6.0.1",
"typescript": "~5.7.2",
"typescript-cp": "^0.1.9"
},
"workspaces": [
"packages/*",
"integrations/*",
"playwright"
]
}