38 lines
1.0 KiB
JSON
38 lines
1.0 KiB
JSON
|
{
|
||
|
"name": "webpack-example",
|
||
|
"version": "1.0.0",
|
||
|
"description": "",
|
||
|
"main": "index.js",
|
||
|
"scripts": {
|
||
|
"test": "echo \"Error: no test specified\" && exit 1",
|
||
|
"build:production": "webpack --mode production",
|
||
|
"build": "webpack --mode development",
|
||
|
"watch:production": "webpack --mode production --watch",
|
||
|
"watch": "webpack --mode development --watch"
|
||
|
},
|
||
|
"author": "",
|
||
|
"license": "ISC",
|
||
|
"devDependencies": {
|
||
|
"@babel/cli": "^7.4.3",
|
||
|
"@babel/core": "^7.4.3",
|
||
|
"@babel/node": "^7.2.2",
|
||
|
"@babel/preset-env": "^7.4.3",
|
||
|
"@babel/preset-react": "^7.0.0",
|
||
|
"babel-loader": "^8.0.5",
|
||
|
"eslint": "^5.16.0",
|
||
|
"eslint-config-airbnb": "^17.1.0",
|
||
|
"eslint-plugin-import": "^2.16.0",
|
||
|
"eslint-plugin-jsx-a11y": "^6.2.1",
|
||
|
"eslint-plugin-react": "^7.12.4",
|
||
|
"file-loader": "^3.0.1",
|
||
|
"html-webpack-plugin": "^3.2.0",
|
||
|
"url-loader": "^1.1.2",
|
||
|
"webpack": "^4.29.6",
|
||
|
"webpack-cli": "^3.3.0"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"react": "^16.8.6",
|
||
|
"react-dom": "^16.8.6"
|
||
|
}
|
||
|
}
|