This repository has been archived by the owner on Apr 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
112 lines (112 loc) · 3.3 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
112
{
"name": "mui-m3-theme",
"version": "0.2.0",
"main": "build/index.js",
"module": "build/index.esm.js",
"files": [
"build"
],
"types": "build/index.d.ts",
"description": "Material Design 3(Material You) theme for MUI react components",
"keywords": [
"material-ui",
"react",
"reactjs",
"material-ui-components",
"react components",
"material design 3",
"material-design",
"material-you",
"typescript"
],
"bugs": {
"url": "https://github.com/limitkr/mui-m3-theme/issues",
"email": "[email protected]"
},
"scripts": {
"rollup": "rm -rf build && rollup -c",
"test": "jest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"generate": "node ./util/create-component"
},
"repository": {
"type": "git",
"url": "https://github.com/limitkr/mui-m3-theme"
},
"author": {
"name": "Yong In Kim",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@babel/runtime": "^7.16.7",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.2",
"@rollup/plugin-typescript": "^8.3.0",
"@storybook/addon-actions": "^6.4.12",
"@storybook/addon-essentials": "^6.4.12",
"@storybook/addon-links": "^6.4.12",
"@storybook/builder-webpack5": "^6.4.12",
"@storybook/manager-webpack5": "^6.4.12",
"@storybook/react": "^6.4.12",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@types/jest": "^27.4.0",
"@types/react": "^17.0.38",
"@types/react-color": "^3.0.6",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"babel-jest": "^27.4.5",
"babel-loader": "^8.2.3",
"babel-preset-react-app": "^10.0.0",
"eslint": "^8.5.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-storybook": "^0.5.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.4.5",
"node-sass": "^5.0.0",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-color": "^2.19.3",
"react-dom": "^17.0.2",
"rollup": "^2.62.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"sass-loader": "^10.2.0",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"dependencies": {
"@elemental-design/material-color-utilities": "^0.0.4",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.2.5",
"@mui/material": "^5.2.6",
"@mui/system": "^5.2.6",
"@types/chroma-js": "^2.1.3",
"chroma-js": "^2.1.2",
"core-js": "3",
"postcss": "^8.4.5",
"prop-types": "^15.8.0"
}
}