-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathpackage.json
75 lines (75 loc) · 2.35 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
{
"name": "material-ui-confirm",
"version": "4.0.0",
"description": "Simple confirmation dialogs built on top of @mui/material",
"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": "storybook dev -p 6006",
"build-storybook": "storybook build",
"format": "prettier --write {src,stories,test,.storybook}/**/*.{js,md,yml,json} --no-error-on-unmatched-pattern"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@chromatic-com/storybook": "^3.2.3",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/material": "^6.3.1",
"@rollup/plugin-babel": "^6.0.4",
"@storybook/addon-actions": "^8.4.7",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/addon-onboarding": "^8.4.7",
"@storybook/addon-webpack5-compiler-swc": "^2.0.0",
"@storybook/blocks": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-webpack5": "^8.4.7",
"@storybook/test": "^8.4.7",
"@testing-library/react": "^16.1.0",
"babel-loader": "^9.2.1",
"coveralls": "^3.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.4.2",
"prop-types": "^15.8.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rollup": "^4.30.1",
"rollup-plugin-copy": "^3.5.0",
"storybook": "^8.4.7"
},
"peerDependencies": {
"@mui/material": ">= 5.0.0",
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
}
}