forked from lumada-design/hv-uikit-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
138 lines (138 loc) · 5.75 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "hv-uikit-react",
"version": "4.0.0",
"description": "A collection of React Components for the Hitachi Vantara Design System.",
"homepage": "https://github.com/lumada-design/hv-uikit-react",
"license": "Apache-2.0",
"private": true,
"author": {
"name": "Hitachi Vantara UI Kit Team"
},
"repository": {
"type": "git",
"url": "https://github.com/lumada-design/hv-uikit-react.git"
},
"scripts": {
"start": "start-storybook -p 9001 --no-version-updates",
"clean": "npx npm-run-all --npm-path npm clean:*",
"clean:package_clean": "npx lerna run clean --parallel",
"clean:lerna": "npx lerna clean --yes ",
"clean:docs": "npx rimraf dist",
"bootstrap": "npx lerna bootstrap -- --force",
"dev": "npx lerna run dev --parallel",
"build": "npx lerna run build",
"build-documentation": "npx npm-run-all --npm-path npm --serial clean:docs build-documentation:storybook",
"build-documentation:storybook": "cross-env NODE_OPTIONS=--max_old_space_size=8192 build-storybook --docs -o dist --quiet",
"doc": "cross-env NODE_OPTIONS=--max_old_space_size=8192 start-storybook -p 9001 --ci --quiet --no-version-updates",
"test": "npx lerna run test --parallel",
"test:update": "npx lerna run test:update --parallel",
"link": "npx lerna run link --parallel",
"yalc": "npx npm-run-all --npm-path npm --serial build yalc-publish",
"yalc-publish": "npx lerna run yalc-publish --parallel",
"generate": "node scripts/generator/index.js",
"publish-": "npx lerna changed && npx lerna publish --yes",
"publish-prerelease": "npx lerna changed && npx lerna publish prerelease --yes",
"publish-prepatch": "npx lerna changed && npx lerna publish prepatch --yes",
"publish-patch": "npx lerna changed && npx lerna publish patch --yes",
"publish-preminor": "npx lerna changed && npx lerna publish preminor --yes",
"publish-minor": "npx lerna changed && npx lerna publish minor --yes",
"publish-premajor": "npx lerna changed && npx lerna publish premajor --yes",
"publish-major": "npx lerna changed && npx lerna publish major --yes",
"lint": "npx npm-run-all --npm-path npm --parallel lint:*",
"lint:eslint": "npx eslint ./ --cache --ext .js,.jsx,.ts,.tsx",
"lint:prettier": "npx lerna run lint:prettier",
"lint:root-prettier": "npx prettier --config ./prettier.config.js --check \"*.js\" \"(doc|.storybook|scripts|automation)/**/*.js\"",
"license-check": "npx lerna run license-check",
"ts-check": "npx lerna run ts-check --parallel",
"prepare": "npx husky install",
"test:e2e": "npx playwright test"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.10",
"@babel/eslint-parser": "^7.18.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.18.9",
"@babel/plugin-transform-object-assign": "^7.18.6",
"@babel/plugin-transform-react-constant-elements": "^7.18.12",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@hookform/resolvers": "^2.9.7",
"@lerna/publish": "^5.4.3",
"@lerna/version": "^5.4.3",
"@mui/material": "^5.9.3",
"@mui/styles": "^5.9.3",
"@playwright/test": "^1.24.2",
"@storybook/addon-docs": "^6.5.10",
"@storybook/addon-essentials": "^6.5.10",
"@storybook/addon-links": "^6.5.10",
"@storybook/builder-webpack4": "^6.5.10",
"@storybook/react": "^6.5.10",
"@storybook/testing-library": "0.0.13",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^12.8.3",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.7",
"babel-plugin-optimize-clsx": "^2.6.2",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"cross-env": "^7.0.3",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.2",
"eslint": "^8.21.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.4.0",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.3",
"eslint-plugin-testing-library": "^5.6.0",
"find-root": "^1.1.0",
"formik": "^2.2.9",
"fs-extra": "^10.1.0",
"fs-readdir-recursive": "^1.1.0",
"html-react-parser": "^3.0.1",
"husky": "^8.0.1",
"jest": "^28.1.3",
"jest-canvas-mock": "^2.4.0",
"jest-environment-jsdom": "^28.1.3",
"jest-enzyme": "^7.1.2",
"jest-fail-on-console": "^2.4.2",
"jest-junit": "^14.0.0",
"lerna": "^5.4.3",
"license-checker": "^25.0.1",
"monaco-editor": "^0.31.1",
"monaco-editor-webpack-plugin": "^7.0.1",
"npm-run-all": "^4.1.5",
"plotly.js-basic-dist": "^2.13.3",
"prettier": "^2.7.1",
"react": "^17.0.2",
"react-beautiful-dnd": "^13.1.0",
"react-docgen": "^5.4.3",
"react-dom": "^17.0.2",
"react-google-charts": "^4.0.0",
"react-hook-form": "^7.34.0",
"react-monaco-editor": "^0.47.0",
"react-resize-aware": "^3.1.1",
"react-syntax-highlighter": "^15.5.0",
"spdx-correct": "^3.1.1",
"spdx-satisfies": "^5.0.1",
"ts-check": "0.2.4",
"typescript": "^4.7.4",
"webpack": "^4.46.0",
"yalc": "^1.0.0-pre.53",
"yup": "^0.32.11"
}
}