-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.56 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
{
"name": "react-dialog-mui",
"version": "0.1.1",
"description": "This React library simplifies the usage of Material-UI dialogs, removing the need to manage states manually.",
"main": "build",
"scripts": {
"prebuild": "rm -rf build",
"build": "tsc --project tsconfig.json",
"format": "npx prettier --config ./.prettierrc --write **/*.{ts,tsx,js,jsx,scss,yml,html,json,md}",
"test": "vitest",
"citest": "CI=true vitest",
"dev": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/synle/react-dialog-mui.git"
},
"author": "Sy Le",
"license": "ISC",
"bugs": {
"url": "https://github.com/synle/react-dialog-mui/issues"
},
"homepage": "https://github.com/synle/react-dialog-mui#readme",
"devDependencies": {
"@chromatic-com/storybook": "^1.3.1",
"@storybook/addon-essentials": "^8.0.6",
"@storybook/addon-interactions": "^8.0.6",
"@storybook/addon-links": "^8.0.6",
"@storybook/addon-onboarding": "^8.0.6",
"@storybook/blocks": "^8.0.6",
"@storybook/react": "^8.0.6",
"@storybook/react-vite": "^8.0.6",
"@storybook/test": "^8.0.6",
"@testing-library/react": "^14.3.0",
"jsdom": "^24.0.0",
"storybook": "^8.0.6",
"typescript": "^5",
"vitest": "^1.4.0"
},
"dependencies": {
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@mui/icons-material": "^5",
"@mui/material": "^5",
"react": "^18",
"react-dom": "^18"
},
"engines": {
"npm": ">=8",
"node": ">=18"
}
}