-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
134 lines (134 loc) · 3.47 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "mui-extended",
"version": "2.0.0",
"description": "Extended UI Components built on Material UI",
"keywords": [
"mui",
"mui extended",
"material UI",
"react UI",
"react form",
"react layout",
"react markdown",
"react GoogleAnalytics",
"sodaru"
],
"module": "dist/index.js",
"typings": "dist/index.d.js",
"files": [
"dist"
],
"scripts": {
"clean": "npx rimraf dist",
"prettier": "npx prettier --check --ignore-unknown ./**/*",
"eslint": "npx eslint ./ --no-error-on-unmatched-pattern",
"tsc": "npx tsc --project tsconfig.build.json",
"next-build": "npx next build",
"prebuild": "npm run prettier && npm run eslint && npm run clean",
"build": "npm run tsc && npm run next-build",
"pretest": "npm run build",
"test": "echo 'no tests'",
"prepack": "npm run test",
"postversion": "git push --follow-tags",
"dev": "next dev",
"start": "next start"
},
"repository": {
"type": "git",
"url": "https://github.com/sodaru/mui-extended.git"
},
"author": "Raghavendra K R <[email protected]>",
"contributors": [
"Raghavendra K R <[email protected]>",
"Lokesh G C <[email protected]>",
"Sukhesh M G <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/sodaru/mui-extended/issues"
},
"homepage": "https://github.com/sodaru/mui-extended#readme",
"devDependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^6.3.1",
"@mui/material": "^6.3.1",
"@mui/x-date-pickers": "^7.23.6",
"@mui/x-tree-view": "^7.23.6",
"@next/bundle-analyzer": "^12.1.0",
"@types/js-yaml": "^4.0.9",
"@types/json-schema": "^7.0.15",
"@types/lodash": "^4.17.14",
"@types/node": "^22.10.5",
"@types/react": "^19.0.4",
"@types/react-dom": "^19.0.2",
"@types/react-syntax-highlighter": "^15.5.13",
"date-fns": "^4.1.0",
"decorated-ajv": "^1.1.0",
"eslint-config-next": "^15.1.4",
"eslint-config-sodaru": "^1.0.1",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"next": "^15.1.4",
"prettier-config-sodaru": "^1.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^9.0.3",
"react-syntax-highlighter": "^15.6.1",
"remark-gfm": "^4.0.0",
"rimraf": "^6.0.1"
},
"prettier": "prettier-config-sodaru",
"eslintConfig": {
"extends": [
"eslint-config-sodaru",
"next"
]
},
"peerDependencies": {
"@mui/icons-material": "^6.3.1",
"@mui/material": "^6.3.1",
"@mui/x-date-pickers": "^7.23.6",
"@mui/x-tree-view": "^7.23.6",
"date-fns": "^4.1.0",
"decorated-ajv": "^1.1.0",
"lodash": "^4.17.21",
"next": "^14.0.0 || ^15.0.0 || ^16.0.0",
"prettier": "^2.3.2 || ^3.4.2",
"react": "^17.0.2 || ^18.0.0 || ^19.0.0",
"react-markdown": "^9.0.3",
"react-syntax-highlighter": "^15.6.1",
"remark-gfm": "^4.0.0",
"tslib": "^2.8.1"
},
"peerDependenciesMeta": {
"@mui/x-date-pickers": {
"optional": true
},
"@mui/x-tree-view": {
"optional": true
},
"date-fns": {
"optional": true
},
"decorated-ajv": {
"optional": true
},
"next": {
"optional": true
},
"prettier": {
"optional": true
},
"react-markdown": {
"optional": true
},
"react-syntax-highlighter": {
"optional": true
},
"remark-gfm": {
"optional": true
}
},
"sideEffects": false
}