forked from jonatanklosko/material-ui-confirm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.8 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
{
"name": "material-ui-confirm",
"version": "3.0.1",
"description": "Higher order component for straightforward use of @material-ui/core confirmation dialogs.",
"keywords": [
"Material UI",
"confirmation",
"dialog"
],
"author": "Jonatan Kłosko",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jonatanklosko/material-ui-confirm.git"
},
"bugs": {
"url": "https://github.com/jonatanklosko/material-ui-confirm/issues"
},
"homepage": "https://github.com/jonatanklosko/material-ui-confirm",
"main": "dist/material-ui-confirm.cjs.js",
"module": "dist/material-ui-confirm.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm run build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@mui/material": "^5.0.1",
"@storybook/addon-actions": "^6.3.8",
"@storybook/addon-links": "^6.3.8",
"@storybook/addons": "^6.3.8",
"@storybook/react": "^6.3.8",
"@testing-library/react": "^12.1.0",
"babel-loader": "^8.2.2",
"coveralls": "^3.1.1",
"jest": "^27.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.57.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-copy": "^3.4.0"
},
"peerDependencies": {
"react": "^17.0.0",
"react-dom": "^17.0.0",
"@mui/material": ">= 5.0.0"
}
}