-
- Downloads
first commit
Showing
- .babelrc 6 additions, 0 deletions.babelrc
- .gitignore 25 additions, 0 deletions.gitignore
- package.json 36 additions, 0 deletionspackage.json
- public/app.bundle.js 2290 additions, 0 deletionspublic/app.bundle.js
- public/index.html 10 additions, 21 deletionspublic/index.html
- public/style.css 0 additions, 24 deletionspublic/style.css
- src/App.js 7 additions, 0 deletionssrc/App.js
- src/index.js 5 additions, 0 deletionssrc/index.js
- webpack.config.js 28 additions, 0 deletionswebpack.config.js
.babelrc
0 → 100644
.gitignore
0 → 100755
package.json
0 → 100644
{ | |||
"name": "muibasic_starterkit", | |||
"version": "1.0.0", | |||
"description": "Boiler plate for MaterialUI Development", | |||
"main": "webpack.config.js", | |||
"dependencies": { | |||
"@emotion/react": "^11.9.3", | |||
"@emotion/styled": "^11.9.3", | |||
"@mui/material": "^5.8.6" | |||
}, | |||
"devDependencies": { | |||
"@babel/cli": "^7.18.6", | |||
"@babel/core": "^7.18.6", | |||
"@babel/plugin-proposal-class-properties": "^7.18.6", | |||
"@babel/preset-env": "^7.18.6", | |||
"@babel/preset-react": "^7.18.6", | |||
"babel-loader": "^8.2.5", | |||
"react": "^18.2.0", | |||
"react-dom": "^18.2.0", | |||
"webpack": "^5.73.0", | |||
"webpack-cli": "^4.10.0", | |||
"webpack-dev-server": "^4.13.2" | |||
}, | |||
"scripts": { | |||
"start": "webpack-dev-server --open --mode development --port 3000", | |||
"build": "webpack --mode development", | |||
"test": "echo \"Error: no test specified\" && exit 1" | |||
}, | |||
"keywords": [ | |||
"Material", | |||
"UI", | |||
"ReactJS" | |||
], | |||
"author": "Hyun Su Choi", | |||
"license": "-" | |||
} |
public/app.bundle.js
0 → 100644
This diff is collapsed.
public/style.css
deleted
100644 → 0
src/App.js
0 → 100644
src/index.js
0 → 100644
webpack.config.js
0 → 100644
Please register or sign in to comment