-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.72 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
{
"private": true,
"name": "parent",
"engines": {
"node": ">=20.10.0"
},
"volta": {
"node": "22.11.0"
},
"scripts": {
"ci": "npm install && npm run package && npm run lint:ci && npm run type && npm run test:ci",
"clean": "lerna run clean",
"build": "tsc --build && tscp --build",
"package": "lerna run package",
"build:clean": "lerna run build:clean",
"type": "lerna run type",
"lint": "lerna run lint --",
"lint:ci": "npm run lint -- -o eslint.xml -f checkstyle",
"protocol": "npm run --workspace=@axonivy/variable-editor-protocol",
"dev": "npm --workspace=@axonivy/config-editor-standalone run dev",
"test": "npm --workspace=@axonivy/variable-editor run test",
"test:ci": "lerna run test:ci",
"webtest": "npm --workspace=@axonivy/config-editor-playwright run webtest",
"webtest:screenshot": "npm --workspace=@axonivy/config-editor-playwright run webtest:screenshots",
"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": {
"@types/node": "^22.8.7",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"lerna": "^8.1.8",
"rimraf": "^6.0.1",
"typescript": "~5.5.4",
"typescript-cp": "^0.1.9"
},
"workspaces": [
"packages/*",
"integrations/*",
"playwright"
]
}