|
1 | 1 | { |
2 | | - "name": "iguazio.dashboard-react-controls", |
3 | | - "version": "0.0.29", |
4 | | - "description": "Collection of resources (such as CSS styles, fonts and images) and ReactJS 17.x components to share among different Iguazio React repos.", |
5 | | - "main": "dist/index.js", |
6 | | - "module": "dist/index.js", |
7 | | - "files": [ |
8 | | - "dist", |
9 | | - "README.md" |
| 2 | + "name": "iguazio.dashboard-react-controls", |
| 3 | + "version": "0.0.30-1.2.1", |
| 4 | + "description": "Collection of resources (such as CSS styles, fonts and images) and ReactJS 17.x components to share among different Iguazio React repos.", |
| 5 | + "main": "dist/index.js", |
| 6 | + "module": "dist/index.js", |
| 7 | + "files": [ |
| 8 | + "dist", |
| 9 | + "README.md" |
| 10 | + ], |
| 11 | + "repository": { |
| 12 | + "type": "git", |
| 13 | + "url": "git@github.com:iguazio/dashboard-react-controls.git" |
| 14 | + }, |
| 15 | + "keywords": [ |
| 16 | + "Iguazio", |
| 17 | + "iguazio", |
| 18 | + "MLRun", |
| 19 | + "mlrun" |
| 20 | + ], |
| 21 | + "peerDependencies": { |
| 22 | + "classnames": "*", |
| 23 | + "lodash": "*", |
| 24 | + "prop-types": "*", |
| 25 | + "react": "*", |
| 26 | + "react-dom": "*", |
| 27 | + "react-modal-promise": "*", |
| 28 | + "react-transition-group": "*", |
| 29 | + "final-form": "*", |
| 30 | + "final-form-arrays": "*", |
| 31 | + "react-final-form": "*", |
| 32 | + "react-final-form-arrays": "*" |
| 33 | + }, |
| 34 | + "devDependencies": { |
| 35 | + "@babel/cli": "^7.17.6", |
| 36 | + "@babel/core": "^7.17.9", |
| 37 | + "@babel/eslint-parser": "^7.17.0", |
| 38 | + "@babel/plugin-transform-react-jsx": "^7.17.3", |
| 39 | + "@babel/preset-env": "^7.16.11", |
| 40 | + "@babel/preset-react": "^7.16.7", |
| 41 | + "@storybook/addon-actions": "^6.4.22", |
| 42 | + "@storybook/addon-essentials": "^6.4.22", |
| 43 | + "@storybook/addon-interactions": "^6.4.22", |
| 44 | + "@storybook/addon-links": "^6.4.22", |
| 45 | + "@storybook/builder-webpack5": "^6.4.22", |
| 46 | + "@storybook/manager-webpack5": "^6.4.22", |
| 47 | + "@storybook/preset-create-react-app": "^4.1.0", |
| 48 | + "@storybook/react": "^6.4.22", |
| 49 | + "@storybook/testing-library": "0.0.9", |
| 50 | + "@testing-library/jest-dom": "^5.16.4", |
| 51 | + "@testing-library/react": "^12.1.5", |
| 52 | + "@testing-library/user-event": "^13.5.0", |
| 53 | + "babel-loader": "^8.2.4", |
| 54 | + "babel-plugin-inline-react-svg": "^2.0.1", |
| 55 | + "classnames": "^2.3.1", |
| 56 | + "cross-env": "^7.0.3", |
| 57 | + "eslint": "^8.22.0", |
| 58 | + "eslint-config-prettier": "^8.3.0", |
| 59 | + "eslint-config-react-app": "^7.0.0", |
| 60 | + "eslint-plugin-prettier": "^4.0.0", |
| 61 | + "eslint-plugin-storybook": "^0.5.10", |
| 62 | + "eslint-webpack-plugin": "^3.1.1", |
| 63 | + "lodash": "^4.17.21", |
| 64 | + "node": "14.19.0", |
| 65 | + "prettier": "^2.5.1", |
| 66 | + "prop-types": "^15.8.1", |
| 67 | + "react": "^17.0.2", |
| 68 | + "react-dom": "^17.0.2", |
| 69 | + "final-form": "^4.20.7", |
| 70 | + "final-form-arrays": "^3.0.2", |
| 71 | + "react-final-form": "^6.5.9", |
| 72 | + "react-final-form-arrays": "^3.1.3", |
| 73 | + "react-modal-promise": "^1.0.2", |
| 74 | + "react-scripts": "5.0.0", |
| 75 | + "react-transition-group": "^4.4.2", |
| 76 | + "sass": "^1.50.0", |
| 77 | + "web-vitals": "^2.1.4", |
| 78 | + "webpack": "^5.72.0" |
| 79 | + }, |
| 80 | + "scripts": { |
| 81 | + "start": "react-scripts start", |
| 82 | + "build": "react-scripts build", |
| 83 | + "test": "react-scripts test", |
| 84 | + "eject": "react-scripts eject", |
| 85 | + "build-storybook": "build-storybook", |
| 86 | + "storybook": "start-storybook -p 6006", |
| 87 | + "compile": "rm -rf dist/* && babel src/lib --out-dir dist --copy-files --no-copy-ignored --ignore src/**/*.stories.js" |
| 88 | + }, |
| 89 | + "eslintConfig": { |
| 90 | + "extends": [ |
| 91 | + "react-app", |
| 92 | + "react-app/jest" |
| 93 | + ] |
| 94 | + }, |
| 95 | + "browserslist": { |
| 96 | + "production": [ |
| 97 | + ">0.2%", |
| 98 | + "not dead", |
| 99 | + "not op_mini all" |
10 | 100 | ], |
11 | | - "repository": { |
12 | | - "type": "git", |
13 | | - "url": "git@github.com:iguazio/dashboard-react-controls.git" |
14 | | - }, |
15 | | - "keywords": [ |
16 | | - "Iguazio", |
17 | | - "iguazio", |
18 | | - "MLRun", |
19 | | - "mlrun" |
20 | | - ], |
21 | | - "peerDependencies": { |
22 | | - "classnames": "*", |
23 | | - "lodash": "*", |
24 | | - "prop-types": "*", |
25 | | - "react": "*", |
26 | | - "react-dom": "*", |
27 | | - "react-modal-promise": "*", |
28 | | - "react-transition-group": "*", |
29 | | - "final-form": "*", |
30 | | - "final-form-arrays": "*", |
31 | | - "react-final-form": "*", |
32 | | - "react-final-form-arrays": "*" |
33 | | - }, |
34 | | - "devDependencies": { |
35 | | - "@babel/cli": "^7.17.6", |
36 | | - "@babel/core": "^7.17.9", |
37 | | - "@babel/eslint-parser": "^7.17.0", |
38 | | - "@babel/plugin-transform-react-jsx": "^7.17.3", |
39 | | - "@babel/preset-env": "^7.16.11", |
40 | | - "@babel/preset-react": "^7.16.7", |
41 | | - "@storybook/addon-actions": "^6.4.22", |
42 | | - "@storybook/addon-essentials": "^6.4.22", |
43 | | - "@storybook/addon-interactions": "^6.4.22", |
44 | | - "@storybook/addon-links": "^6.4.22", |
45 | | - "@storybook/builder-webpack5": "^6.4.22", |
46 | | - "@storybook/manager-webpack5": "^6.4.22", |
47 | | - "@storybook/preset-create-react-app": "^4.1.0", |
48 | | - "@storybook/react": "^6.4.22", |
49 | | - "@storybook/testing-library": "0.0.9", |
50 | | - "@testing-library/jest-dom": "^5.16.4", |
51 | | - "@testing-library/react": "^12.1.5", |
52 | | - "@testing-library/user-event": "^13.5.0", |
53 | | - "babel-loader": "^8.2.4", |
54 | | - "babel-plugin-inline-react-svg": "^2.0.1", |
55 | | - "classnames": "^2.3.1", |
56 | | - "cross-env": "^7.0.3", |
57 | | - "eslint": "^8.22.0", |
58 | | - "eslint-config-prettier": "^8.3.0", |
59 | | - "eslint-config-react-app": "^7.0.0", |
60 | | - "eslint-plugin-prettier": "^4.0.0", |
61 | | - "eslint-plugin-storybook": "^0.5.10", |
62 | | - "eslint-webpack-plugin": "^3.1.1", |
63 | | - "lodash": "^4.17.21", |
64 | | - "node": "14.19.0", |
65 | | - "prettier": "^2.5.1", |
66 | | - "prop-types": "^15.8.1", |
67 | | - "react": "^17.0.2", |
68 | | - "react-dom": "^17.0.2", |
69 | | - "final-form": "^4.20.7", |
70 | | - "final-form-arrays": "^3.0.2", |
71 | | - "react-final-form": "^6.5.9", |
72 | | - "react-final-form-arrays": "^3.1.3", |
73 | | - "react-modal-promise": "^1.0.2", |
74 | | - "react-scripts": "5.0.0", |
75 | | - "react-transition-group": "^4.4.2", |
76 | | - "sass": "^1.50.0", |
77 | | - "web-vitals": "^2.1.4", |
78 | | - "webpack": "^5.72.0" |
79 | | - }, |
80 | | - "scripts": { |
81 | | - "start": "react-scripts start", |
82 | | - "build": "react-scripts build", |
83 | | - "test": "react-scripts test", |
84 | | - "eject": "react-scripts eject", |
85 | | - "build-storybook": "build-storybook", |
86 | | - "storybook": "start-storybook -p 6006", |
87 | | - "compile": "rm -rf dist/* && babel src/lib --out-dir dist --copy-files --no-copy-ignored --ignore src/**/*.stories.js" |
88 | | - }, |
89 | | - "eslintConfig": { |
90 | | - "extends": [ |
91 | | - "react-app", |
92 | | - "react-app/jest" |
93 | | - ] |
94 | | - }, |
95 | | - "browserslist": { |
96 | | - "production": [ |
97 | | - ">0.2%", |
98 | | - "not dead", |
99 | | - "not op_mini all" |
100 | | - ], |
101 | | - "development": [ |
102 | | - "last 1 chrome version", |
103 | | - "last 1 firefox version", |
104 | | - "last 1 safari version" |
105 | | - ] |
106 | | - } |
| 101 | + "development": [ |
| 102 | + "last 1 chrome version", |
| 103 | + "last 1 firefox version", |
| 104 | + "last 1 safari version" |
| 105 | + ] |
| 106 | + } |
107 | 107 | } |
0 commit comments