|
1 | 1 | { |
2 | | - "name": "iguazio.dashboard-react-controls", |
3 | | - "version": "2.2.20", |
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": "[email protected]:iguazio/dashboard-react-controls.git" |
| 2 | + "name": "iguazio.dashboard-react-controls", |
| 3 | + "version": "2.2.20", |
| 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 | + "module": "./dist/index.mjs", |
| 6 | + "main": "./dist/index.mjs", |
| 7 | + "types": "./dist/index.d.ts", |
| 8 | + "exports": { |
| 9 | + ".": { |
| 10 | + "import": "./dist/index.mjs", |
| 11 | + "types": "./dist/index.d.ts" |
14 | 12 | }, |
15 | | - "keywords": [ |
16 | | - "Iguazio", |
17 | | - "iguazio", |
18 | | - "MLRun", |
19 | | - "mlrun" |
| 13 | + "./components": "./dist/components/index.mjs", |
| 14 | + "./elements": "./dist/elements/index.mjs", |
| 15 | + "./hooks": "./dist/hooks/index.mjs", |
| 16 | + "./constants": "./dist/constants.mjs", |
| 17 | + "./types": "./dist/types.mjs", |
| 18 | + "./utils": "./dist/utils/index.mjs", |
| 19 | + "./utils/*": "./dist/utils/*", |
| 20 | + "./images/*": "./dist/images/*", |
| 21 | + "./scss/*": "./dist/scss/*", |
| 22 | + "./index.css": "./dist/index.css" |
| 23 | + }, |
| 24 | + "files": [ |
| 25 | + "dist", |
| 26 | + "README.md" |
| 27 | + ], |
| 28 | + "repository": { |
| 29 | + "type": "git", |
| 30 | + "url": "[email protected]:iguazio/dashboard-react-controls.git" |
| 31 | + }, |
| 32 | + "keywords": [ |
| 33 | + "Iguazio", |
| 34 | + "iguazio", |
| 35 | + "MLRun", |
| 36 | + "mlrun" |
| 37 | + ], |
| 38 | + "peerDependencies": { |
| 39 | + "classnames": "*", |
| 40 | + "final-form": "*", |
| 41 | + "final-form-arrays": "*", |
| 42 | + "lodash": "*", |
| 43 | + "prop-types": "*", |
| 44 | + "react": "*", |
| 45 | + "react-dom": "*", |
| 46 | + "react-final-form": "*", |
| 47 | + "react-final-form-arrays": "*", |
| 48 | + "react-modal-promise": "*", |
| 49 | + "react-transition-group": "*" |
| 50 | + }, |
| 51 | + "devDependencies": { |
| 52 | + "@eslint/js": "^9.19.0", |
| 53 | + "@storybook/addon-actions": "^8.0.0", |
| 54 | + "@storybook/addon-essentials": "^8.0.0", |
| 55 | + "@storybook/addon-interactions": "^8.0.0", |
| 56 | + "@storybook/addon-links": "^8.0.0", |
| 57 | + "@storybook/builder-webpack5": "^8.0.0", |
| 58 | + "@storybook/manager-webpack5": "^6.5.16", |
| 59 | + "@storybook/react": "^8.0.0", |
| 60 | + "@storybook/testing-library": "0.2.2", |
| 61 | + "@types/react": "^19.0.8", |
| 62 | + "@types/react-dom": "^19.0.3", |
| 63 | + "@vitejs/plugin-react": "^4.3.4", |
| 64 | + "classnames": "^2.3.1", |
| 65 | + "cross-env": "^7.0.3", |
| 66 | + "eslint": "^9.13.0", |
| 67 | + "eslint-config-prettier": "^9.1.0", |
| 68 | + "eslint-plugin-react": "^7.37.4", |
| 69 | + "eslint-plugin-react-hooks": "^5.1.0", |
| 70 | + "eslint-plugin-react-refresh": "^0.4.14", |
| 71 | + "final-form": "^4.20.10", |
| 72 | + "final-form-arrays": "^3.1.0", |
| 73 | + "globals": "^15.14.0", |
| 74 | + "lodash": "^4.17.21", |
| 75 | + "node": "21.6.2", |
| 76 | + "prettier": "3.3.3", |
| 77 | + "prop-types": "^15.8.1", |
| 78 | + "react": "^18.2.0", |
| 79 | + "react-dom": "^18.2.0", |
| 80 | + "react-final-form": "^6.5.9", |
| 81 | + "react-final-form-arrays": "^3.1.4", |
| 82 | + "react-modal-promise": "^1.0.2", |
| 83 | + "react-transition-group": "^4.4.5", |
| 84 | + "sass": "^1.72.0", |
| 85 | + "tsup": "^8.3.6", |
| 86 | + "typescript": "^5.7.3", |
| 87 | + "typescript-eslint": "^8.11.0", |
| 88 | + "vite": "^6.0.11", |
| 89 | + "vite-plugin-commonjs": "^0.10.4", |
| 90 | + "vite-plugin-eslint": "^1.8.1", |
| 91 | + "vite-plugin-static-copy": "^2.2.0", |
| 92 | + "vite-plugin-svgr": "^4.3.0" |
| 93 | + }, |
| 94 | + "scripts": { |
| 95 | + "lint": "eslint 'src/**/*.{js,jsx}' --quiet", |
| 96 | + "lint:fix": "eslint 'src/**/*.{js,jsx}' --fix", |
| 97 | + "prettier": "prettier --check 'src/**/*.{js,jsx,scss}'", |
| 98 | + "prettier:fix": "prettier --write 'src/**/*.{js,jsx,scss}'", |
| 99 | + "build-storybook": "build-storybook", |
| 100 | + "storybook": "start-storybook -p 6006", |
| 101 | + "start": "vite", |
| 102 | + "build": "vite build && npx tsc", |
| 103 | + "compile": "cross-env NODE_ENV=development vite build && npx tsc", |
| 104 | + "serve": "vite preview" |
| 105 | + }, |
| 106 | + "browserslist": { |
| 107 | + "production": [ |
| 108 | + ">0.2%", |
| 109 | + "not dead", |
| 110 | + "not op_mini all" |
20 | 111 | ], |
21 | | - "peerDependencies": { |
22 | | - "classnames": "*", |
23 | | - "final-form": "*", |
24 | | - "final-form-arrays": "*", |
25 | | - "lodash": "*", |
26 | | - "prop-types": "*", |
27 | | - "react": "*", |
28 | | - "react-dom": "*", |
29 | | - "react-final-form": "*", |
30 | | - "react-final-form-arrays": "*", |
31 | | - "react-modal-promise": "*", |
32 | | - "react-transition-group": "*" |
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.23.3", |
41 | | - "@storybook/addon-actions": "^8.0.0", |
42 | | - "@storybook/addon-essentials": "^8.0.0", |
43 | | - "@storybook/addon-interactions": "^8.0.0", |
44 | | - "@storybook/addon-links": "^8.0.0", |
45 | | - "@storybook/builder-webpack5": "^8.0.0", |
46 | | - "@storybook/manager-webpack5": "^6.5.16", |
47 | | - "@storybook/preset-create-react-app": "^8.0.0", |
48 | | - "@storybook/react": "^8.0.0", |
49 | | - "@storybook/testing-library": "0.2.2", |
50 | | - "@testing-library/jest-dom": "^6.4.2", |
51 | | - "@testing-library/react": "^14.2.1", |
52 | | - "@testing-library/user-event": "^14.5.2", |
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.57.0", |
58 | | - "eslint-config-prettier": "^9.1.0", |
59 | | - "eslint-config-react-app": "^7.0.1", |
60 | | - "eslint-plugin-prettier": "^5.1.3", |
61 | | - "eslint-plugin-storybook": "^0.8.0", |
62 | | - "eslint-webpack-plugin": "^4.0.1", |
63 | | - "final-form": "^4.20.10", |
64 | | - "final-form-arrays": "^3.1.0", |
65 | | - "lodash": "^4.17.21", |
66 | | - "node": "21.6.2", |
67 | | - "prettier": "3.2.5", |
68 | | - "prop-types": "^15.8.1", |
69 | | - "react": "^18.2.0", |
70 | | - "react-dom": "^18.2.0", |
71 | | - "react-final-form": "^6.5.9", |
72 | | - "react-final-form-arrays": "^3.1.4", |
73 | | - "react-modal-promise": "^1.0.2", |
74 | | - "react-scripts": "5.0.1", |
75 | | - "react-transition-group": "^4.4.5", |
76 | | - "sass": "^1.50.0", |
77 | | - "web-vitals": "^2.1.4", |
78 | | - "webpack": "^5.94.0" |
79 | | - }, |
80 | | - "scripts": { |
81 | | - "start": "react-scripts start", |
82 | | - "build": "react-scripts build", |
83 | | - "lint": "eslint 'src/**/*.{js,jsx}' --quiet", |
84 | | - "lint:fix": "eslint 'src/**/*.{js,jsx}' --fix", |
85 | | - "prettier": "prettier --check 'src/**/*.{js,jsx,scss}'", |
86 | | - "prettier:fix": "prettier --write 'src/**/*.{js,jsx,scss}'", |
87 | | - "test": "react-scripts test", |
88 | | - "eject": "react-scripts eject", |
89 | | - "build-storybook": "build-storybook", |
90 | | - "storybook": "start-storybook -p 6006", |
91 | | - "compile": "rm -rf dist/* && babel src/lib --out-dir dist --copy-files --no-copy-ignored --ignore src/**/*.stories.js" |
92 | | - }, |
93 | | - "eslintConfig": { |
94 | | - "extends": [ |
95 | | - "react-app", |
96 | | - "react-app/jest" |
97 | | - ] |
98 | | - }, |
99 | | - "browserslist": { |
100 | | - "production": [ |
101 | | - ">0.2%", |
102 | | - "not dead", |
103 | | - "not op_mini all" |
104 | | - ], |
105 | | - "development": [ |
106 | | - "last 1 chrome version", |
107 | | - "last 1 firefox version", |
108 | | - "last 1 safari version" |
109 | | - ] |
110 | | - } |
| 112 | + "development": [ |
| 113 | + "last 1 chrome version", |
| 114 | + "last 1 firefox version", |
| 115 | + "last 1 safari version" |
| 116 | + ] |
| 117 | + } |
111 | 118 | } |
0 commit comments