-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
111 lines (111 loc) · 3.68 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
{
"name": "iguazio.dashboard-react-controls",
"version": "2.2.13",
"description": "Collection of resources (such as CSS styles, fonts and images) and ReactJS 17.x components to share among different Iguazio React repos.",
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "[email protected]:iguazio/dashboard-react-controls.git"
},
"keywords": [
"Iguazio",
"iguazio",
"MLRun",
"mlrun"
],
"peerDependencies": {
"classnames": "*",
"final-form": "*",
"final-form-arrays": "*",
"lodash": "*",
"prop-types": "*",
"react": "*",
"react-dom": "*",
"react-final-form": "*",
"react-final-form-arrays": "*",
"react-modal-promise": "*",
"react-transition-group": "*"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-transform-react-jsx": "^7.17.3",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.23.3",
"@storybook/addon-actions": "^8.0.0",
"@storybook/addon-essentials": "^8.0.0",
"@storybook/addon-interactions": "^8.0.0",
"@storybook/addon-links": "^8.0.0",
"@storybook/builder-webpack5": "^8.0.0",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/preset-create-react-app": "^8.0.0",
"@storybook/react": "^8.0.0",
"@storybook/testing-library": "0.2.2",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"babel-loader": "^8.2.4",
"babel-plugin-inline-react-svg": "^2.0.1",
"classnames": "^2.3.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-storybook": "^0.8.0",
"eslint-webpack-plugin": "^4.0.1",
"final-form": "^4.20.10",
"final-form-arrays": "^3.1.0",
"lodash": "^4.17.21",
"node": "21.6.2",
"prettier": "3.2.5",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-final-form": "^6.5.9",
"react-final-form-arrays": "^3.1.4",
"react-modal-promise": "^1.0.2",
"react-scripts": "5.0.1",
"react-transition-group": "^4.4.5",
"sass": "^1.50.0",
"web-vitals": "^2.1.4",
"webpack": "^5.94.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"lint": "eslint 'src/**/*.{js,jsx}' --quiet",
"lint:fix": "eslint 'src/**/*.{js,jsx}' --fix",
"prettier": "prettier --check 'src/**/*.{js,jsx,scss}'",
"prettier:fix": "prettier --write 'src/**/*.{js,jsx,scss}'",
"test": "react-scripts test",
"eject": "react-scripts eject",
"build-storybook": "build-storybook",
"storybook": "start-storybook -p 6006",
"compile": "rm -rf dist/* && babel src/lib --out-dir dist --copy-files --no-copy-ignored --ignore src/**/*.stories.js"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}