forked from lumada-design/hv-uikit-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.93 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "hv-uikit-react",
"private": true,
"description": "The React component library for the Next Design System.",
"homepage": "https://github.com/lumada-design/hv-uikit-react",
"author": "Hitachi Vantara UI Kit Team",
"repository": {
"type": "git",
"url": "https://github.com/lumada-design/hv-uikit-react.git"
},
"bugs": {
"url": "https://github.com/lumada-design/hv-uikit-react/issues"
},
"license": "Apache-2.0",
"scripts": {
"dev": "npm run dev -w app",
"doc": "start-storybook -p 6006 --no-manager-cache",
"build": "lerna run build",
"build:doc": "build-storybook --docs -o dist --quiet",
"build:app": "vite build app",
"test": "lerna run test",
"test:pa11y": "pa11y-ci -c .config/pa11yci.config.js",
"test:eyes": "npx eyes-storybook -f .config/applitools.config.js",
"coverage": "lerna run coverage",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"lint": "eslint . --ext .ts,.tsx --cache",
"lint:fix": "npm run lint -- --fix",
"lint-staged": "lint-staged",
"typecheck": "lerna run typecheck",
"depcheck": "npx -y owasp-dependency-check --project uikit -o reports --cveStartYear 2015",
"publish:test": "lerna publish --conventional-graduate --yes --no-git-tag-version --no-push",
"publish:release": "lerna publish --conventional-graduate --yes",
"publish:next": "lerna publish --conventional-prerelease --yes --preid next --dist-tag next",
"prepare": "npx husky install .config/husky"
},
"devDependencies": {
"@applitools/eyes-storybook": "^3.35.0",
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@emotion/core": "^11.0.0",
"@emotion/css": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@mdx-js/react": "^1.6.22",
"@mui/material": "^5.13.5",
"@playwright/test": "^1.35.0",
"@storybook/addon-a11y": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/builder-vite": "^0.1.29",
"@storybook/core-common": "^6.5.16",
"@storybook/react": "^6.5.16",
"@storybook/testing-library": "^0.2.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/lodash": "^4.14.195",
"@types/react": "^18.2.12",
"@types/react-dom": "^18.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"@vitest/coverage-c8": "^0.32.0",
"arquero": "^5.2.0",
"clean-publish": "^4.2.0",
"clsx": "^1.2.1",
"echarts": "^5.4.2",
"echarts-for-react": "^3.0.2",
"eslint": "^8.42.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-ssr-friendly": "^1.2.0",
"formik": "^2.4.2",
"html-react-parser": "^3.0.16",
"jsdom": "^21.1.2",
"lerna": "^7.1.1",
"lint-staged": "^13.2.2",
"npm-run-all": "^4.1.5",
"pa11y-ci": "^3.0.1",
"pa11y-ci-reporter-html": "^5.1.1",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-google-charts": "^4.0.0",
"typescript": "^4.9.5",
"vite": "^4.3.9",
"vite-plugin-dts": "2.3.0",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.32.0",
"yup": "^1.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --ext .ts,.tsx --cache",
"pretty-quick --staged"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"workspaces": [
"packages/*",
"app/"
]
}