-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
75 lines (75 loc) · 2.33 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": "3.0.16",
"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.17.9",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@chromatic-com/storybook": "^1.4.0",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/material": "^5.6.1",
"@storybook/addon-actions": "^8.1.4",
"@storybook/addon-essentials": "^8.1.4",
"@storybook/addon-interactions": "^8.1.4",
"@storybook/addon-links": "^8.1.4",
"@storybook/addon-onboarding": "^8.1.4",
"@storybook/addon-webpack5-compiler-swc": "^1.0.2",
"@storybook/blocks": "^8.1.4",
"@storybook/react": "^8.1.4",
"@storybook/react-webpack5": "^8.1.4",
"@storybook/test": "^8.1.4",
"@testing-library/react": "^13.0.1",
"babel-loader": "^8.2.4",
"coveralls": "^3.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.5",
"prop-types": "^15.8.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rollup": "^2.70.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-copy": "^3.4.0",
"storybook": "^8.1.4"
},
"peerDependencies": {
"@mui/material": ">= 5.0.0",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
}
}