This repository was archived by the owner on Nov 11, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.06 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.06 KB
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
{
"name": "mdc-react",
"version": "1.0.0-beta.9",
"description": "Material Components for the web implemented in React",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./*": "./dist/*.js"
},
"scripts": {
"build": "webpack --env=production --mode=production",
"build-docs": "webpack --config-name=docs --env=production --mode=production",
"docs": "webpack serve --config-name=docs --env=development --mode=development --hot --history-api-fallback",
"lint": "eslint ./src",
"prepublishOnly": "npm run lint && npm run build",
"start": "webpack --watch --env=development --mode=development"
},
"peerDependencies": {
"react": "^17.0.0",
"react-dom": "^17.0.0"
},
"dependencies": {
"classnames": "^2.3.1",
"material-components-web": "^14.0.0",
"prop-types": "^15.7.2",
"react-transition-group": "^4.4.2"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"autoprefixer": "^10.3.7",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.4.0",
"css-minimizer-webpack-plugin": "^3.1.1",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"highlight.js": "^11.2.0",
"html-webpack-plugin": "^5.3.2",
"marked": "^3.0.7",
"mini-css-extract-plugin": "^2.4.2",
"postcss-loader": "^6.2.0",
"postcss-preset-env": "^6.7.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.3.0",
"sass": "^1.43.2",
"sass-loader": "^12.2.0",
"style-loader": "^3.3.0",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0"
},
"author": {
"name": "Oleg Polyakov",
"email": "olegpolyakov@outlook.com"
},
"repository": "mdc-react",
"keywords": [
"mdc",
"react",
"material",
"design",
"components",
"web",
"ui"
],
"license": "MIT"
}