forked from axonivy/ui-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.57 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
{
"private": true,
"name": "parent",
"engines": {
"node": ">=20.10.0"
},
"volta": {
"node": "22.11.0"
},
"scripts": {
"ci": "npm install && npm run generate && npm run package && npm run type && npm run lint:ci && npm run test:ci",
"generate": "npm run generate --workspace=@axonivy/ui-icons",
"build": "lerna run build",
"package": "lerna run package",
"clean": "lerna run clean",
"type": "lerna run type",
"lint": "lerna run lint --",
"lint:ci": "npm run lint -- -o eslint.xml -f checkstyle",
"lint:fix": "lerna run lint:fix --",
"dev": "npm run dev --workspace=@axonivy/ui-components",
"test": "npm run test --workspace=@axonivy/ui-components",
"test:ci": "lerna run test:ci",
"publish:next": "lerna publish --exact --canary --preid next --pre-dist-tag next --no-git-tag-version --no-push --ignore-scripts --yes"
},
"devDependencies": {
"@types/node": "^22.8.7",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-compiler": "^19.0.0-beta-8a03594-20241020",
"eslint-plugin-react-hooks": "^5.0.0",
"lerna": "^8.1.8",
"rimraf": "^6.0.1",
"rollup-plugin-visualizer": "^5.12.0",
"typescript": "~5.6.3",
"typescript-cp": "^0.1.9",
"vite": "^5.4.10",
"vite-plugin-dts": "^4.3.0",
"vitest": "^2.1.3"
},
"workspaces": {
"packages": [
"packages/*"
]
}
}