mcf-components/package.json

35 lines
993 B
JSON
Raw Normal View History

2020-03-10 12:36:13 +01:00
{
"name": "mcf-components",
2021-08-31 21:31:08 +01:00
"version": "0.2.0",
"description": "Library to render component templates created using React and Material-UI",
"main": "dist/mcf-components.js",
2020-03-10 12:36:13 +01:00
"scripts": {
"dist": "webpack --config webpack.prod.js",
2020-03-10 12:36:13 +01:00
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
2021-08-31 21:31:08 +01:00
"@babel/core": "^7.15.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@babel/runtime": "^7.14.8",
"babel-loader": "^8.2.2",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.0.6",
"webpack": "^5.49.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0"
2020-03-10 12:36:13 +01:00
},
"dependencies": {
2021-08-31 21:31:08 +01:00
"@material-ui/core": "^4.12.3",
"@material-ui/lab": "^4.0.0-alpha.60",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-select": "^4.3.1"
2020-03-10 12:36:13 +01:00
}
}