75 lines
2.3 KiB
JSON
75 lines
2.3 KiB
JSON
{
|
|
"name": "webpack-basics",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"dev": "webpack-dev-server --mode development --config webpack.config.js --open",
|
|
"build": "webpack -p",
|
|
"lint": "eslint --fix . && echo 'Lint complete.'"
|
|
},
|
|
"engines": {
|
|
"node": "10.1.0",
|
|
"npm": "6.4.1",
|
|
"watch": "watch 'clear && npm run -s test | tap-nirvana && npm run -s lint' src"
|
|
},
|
|
"author": "Andres Alcocer",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"axios": "^0.18.1",
|
|
"lodash": "^4.17.19",
|
|
"prop-types": "^15.6.2",
|
|
"react": "^16.6.1",
|
|
"react-dom": "^16.6.1",
|
|
"react-redux": "^6.0.1",
|
|
"react-router-dom": "^4.3.1",
|
|
"react-slick": "^0.27.1",
|
|
"redux": "^4.0.1",
|
|
"redux-promise": "^0.6.0",
|
|
"redux-thunk": "^2.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.1.5",
|
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
|
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
|
|
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
|
|
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
|
|
"@babel/polyfill": "^7.0.0-beta.51",
|
|
"@babel/preset-env": "^7.1.5",
|
|
"@babel/preset-react": "^7.0.0",
|
|
"babel-loader": "^8.0.4",
|
|
"clean-webpack-plugin": "^1.0.0",
|
|
"copy-webpack-plugin": "^4.6.0",
|
|
"css-loader": "^1.0.1",
|
|
"dotenv": "^6.2.0",
|
|
"eslint": "^6.8.0",
|
|
"eslint-config-airbnb": "^18.1.0",
|
|
"eslint-config-prettier": "^6.11.0",
|
|
"eslint-plugin-import": "^2.20.2",
|
|
"eslint-plugin-jsx-a11y": "^6.2.3",
|
|
"eslint-plugin-prettier": "^3.1.3",
|
|
"eslint-plugin-react": "^7.20.0",
|
|
"eslint-plugin-react-hooks": "^2.5.1",
|
|
"extract-text-webpack-plugin": "^3.0.2",
|
|
"file-loader": "^2.0.0",
|
|
"html-loader": "^0.5.5",
|
|
"html-webpack-plugin": "^3.2.0",
|
|
"image-webpack-loader": "^4.5.0",
|
|
"mini-css-extract-plugin": "^0.4.4",
|
|
"node-sass": "^4.14.1",
|
|
"optimize-css-assets-webpack-plugin": "^5.0.1",
|
|
"prettier": "^2.0.5",
|
|
"react-owl-carousel2": "^0.3.0",
|
|
"sass-loader": "^7.1.0",
|
|
"style-loader": "^0.23.1",
|
|
"svg-inline-loader": "^0.8.0",
|
|
"svg-react-loader": "^0.4.6",
|
|
"tap-nirvana": "^1.1.0",
|
|
"uglifyjs-webpack-plugin": "^2.0.1",
|
|
"watch": "^1.0.2",
|
|
"webpack": "^4.43.0",
|
|
"webpack-cli": "^3.3.12",
|
|
"webpack-dev-server": "^3.11.0"
|
|
}
|
|
}
|