-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.97 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.97 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
{
"private": true,
"name": "@axonivy/database-editor-root",
"engines": {
"node": ">=20.19.0"
},
"volta": {
"node": "24.14.1"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"ci": "pnpm install --no-frozen-lockfile && pnpm run package && (pnpm run lint:ci || true) && pnpm run type && pnpm run test:ci && pnpm run i18n:ci",
"clean": "pnpm run -r clean",
"build": "tsc --build",
"package": "pnpm run -r package",
"build:clean": "pnpm run -r build:clean",
"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": "pnpm run -r i18n",
"i18n:ci": "pnpm run -r i18n:ci",
"generate": "pnpm run --filter @axonivy/database-editor-protocol generate",
"dev": "pnpm run --filter @axonivy/database-editor-standalone dev",
"test": "pnpm run --filter @axonivy/database-editor test",
"test:ci": "pnpm run -r test:ci",
"webtest": "pnpm run --filter @axonivy/database-editor-playwright webtest",
"webtest:screenshot": "pnpm run --filter @axonivy/database-editor-playwright webtest:screenshots",
"update:axonivy:next": "npx npm-check-updates @axonivy* -w -c 0 -t semver -u",
"raise:version": "lerna version --allow-peer-dependencies-update --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.1125.e82f52e",
"@axonivy/prettier-config": "~14.0.0-next.1125.e82f52e",
"@axonivy/ts-config": "~14.0.0-next.1125.e82f52e",
"@lerna-lite/cli": "^5.0.0",
"@lerna-lite/publish": "^5.0.0",
"@lerna-lite/version": "^5.0.0",
"@types/node": "^24.0.0",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"typescript": "^6.0.0"
},
"prettier": "@axonivy/prettier-config"
}