-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.56 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "webpack5",
"version": "1.1.0",
"description": "My webpack config",
"main": "index.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack",
"watch": "cross-env NODE_ENV=development webpack serve --open",
"lint:js": "eslint --ext .js ./src/",
"lint:scss": "stylelint --syntax scss \"./src/scss/**/*.scss\"",
"lint": "concurrently \"npm run lint:scss\" \"npm run lint:js\"",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ekunitsa/webpack5.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ekunitsa/webpack5/issues"
},
"homepage": "https://github.com/ekunitsa/webpack5#readme",
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.22.20",
"@squoosh/lib": "^0.5.3",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^8.2.2",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"eslint": "8.52.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-spellcheck": "^0.0.20",
"extract-loader": "^5.1.0",
"fs": "0.0.1-security",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.0",
"image-minimizer-webpack-plugin": "^3.8.3",
"imagemin": "^8.0.1",
"imagemin-avif": "^0.1.4",
"imagemin-gifsicle": "^7.0.0",
"imagemin-jpegtran": "^7.0.0",
"imagemin-mozjpeg": "^10.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-pngquant": "^9.0.2",
"imagemin-svgo": "^10.0.1",
"imagemin-webp": "^8.0.0",
"mini-css-extract-plugin": "^2.7.6",
"path": "^0.12.7",
"prettier": "3.0.3",
"raw-loader": "^4.0.2",
"resolve-url-loader": "^5.0.0",
"sass": "^1.69.0",
"sass-loader": "^13.3.2",
"scss-reset": "^1.4.2",
"style-loader": "^3.3.3",
"stylelint": "^8.4.0",
"stylelint-config-standard": "^17.0.0",
"stylelint-scss": "^2.5.0",
"svg-spritemap-webpack-plugin": "^4.5.0",
"twig-html-loader": "^0.1.9",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"xml-loader": "^1.2.1"
},
"dependencies": {
"jquery": "^3.7.1",
"slick-carousel": "^1.8.1"
}
}