-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 987 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"name": "weather_app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"bundle-js": "npx webpack",
"minify-html": "npx html-minifier --input-dir src --output-dir dist --collapse-whitespace --remove-comments --remove-optional-tags --remove-redundant-attributes --remove-script-type-attributes --remove-tag-whitespace --use-short-doctype --file-ext html",
"minify-css": "npx css-minify -d ./src -o ./dist && mv ./dist/styles.min.css ./dist/styles.css",
"move-images": "mv ./src/images ./dist/images",
"build": "npm run bundle-js && npm run minify-html && npm run minify-css && npm run move-images"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"css-minify": "^2.0.0",
"eslint": "^8.48.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.1",
"html-minifier": "^4.0.0",
"prettier": "^3.0.3",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}