forked from axonivy/inscription-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.67 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",
"engines": {
"yarn": ">=1.7.0 <2.x.x",
"node": ">=20.10.0"
},
"volta": {
"node": "20.10.0"
},
"scripts": {
"ci": "yarn install && yarn package && yarn lint:ci && yarn 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": "lerna run lint --",
"lint:ci": "yarn lint -o eslint.xml -f checkstyle",
"lint:fix": "lerna run lint:fix --",
"standalone": "yarn -s --cwd integrations/standalone",
"dev": "yarn standalone start:mock",
"generate": "lerna run generate",
"protocol": "yarn --cwd packages/protocol",
"test": "yarn --cwd packages/editor test",
"test:ci": "lerna run test:ci",
"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": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.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.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"lerna": "^8.0.1",
"rimraf": "^5.0.5",
"typescript": "~5.3.3",
"typescript-cp": "^0.1.9"
},
"workspaces": [
"packages/*",
"integrations/*"
]
}