33 lines
884 B
JSON
33 lines
884 B
JSON
{
|
|
"name": "my-webpack-project",
|
|
"version": "1.0.0",
|
|
"description": "My webpack project",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"build": "webpack --mode=development",
|
|
"watch": "webpack --watch"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "ssh://_gitea@git.alexanderk.net:3022/ak/js-weatherapp.git"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"@babel/core": "^7.22.5",
|
|
"@babel/preset-env": "^7.22.5",
|
|
"@webpack-cli/generators": "^3.0.7",
|
|
"babel-loader": "^9.1.2",
|
|
"css-loader": "^6.7.3",
|
|
"eslint": "^8.43.0",
|
|
"eslint-config-prettier": "^8.8.0",
|
|
"mini-css-extract-plugin": "^2.7.6",
|
|
"prettier": "^2.8.8",
|
|
"style-loader": "^3.3.1",
|
|
"webpack": "^5.88.0",
|
|
"webpack-cli": "^5.1.4",
|
|
"webpack-dev-server": "^4.15.1"
|
|
}
|
|
}
|