-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.7 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
78
79
80
{
"name": "webpack-boilerplate",
"version": "1.0.0",
"description": "Simple boilerplate with webpack 5 for webdev",
"private": "true",
"browserslist": [
"> 5%",
"last 2 versions"
],
"type": "module",
"scripts": {
"build": "webpack --config configuration/webpack.dev.config.js && npm run test",
"prebuild-prod": "npm run lint:scss:fix && npm run lint:js:fix && npm run test",
"build-prod": "webpack --config configuration/webpack.prod.config.js ",
"start": "webpack serve --config configuration/webpack.dev.config.js",
"deploy": "gh-pages -b deployment -d dist",
"lint:scss": "stylelint \"**/*.scss\"",
"lint:scss:fix": "stylelint \"**/*.scss\" --fix ",
"lint:js": "eslint --ext .js src/js/",
"lint:js:fix": "eslint --ext .js src/js/ --fix",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage --collectCoverageFrom=\"./src/js/**\""
},
"keywords": [
"webpack",
"template",
"boilerplate"
],
"author": "Ilya Dokuchaev <miamorokor@mail.ru>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Ilya-Dokuchaev/webpack-boilerplate"
},
"bugs": {
"url": "https://github.com/Ilya-Dokuchaev/webpack-boilerplate/issues",
"email": "miamorokor@mail.ru"
},
"homepage": "https://github.com/Ilya-Dokuchaev/webpack-boilerplate#readme",
"devDependencies": {
"@babel/core": "^7.22.8",
"@babel/preset-env": "^7.22.9",
"@jest/globals": "^29.6.1",
"@squoosh/lib": "^0.5.3",
"autoprefixer": "^10.4.14",
"babel-jest": "^29.6.0",
"babel-loader": "^9.1.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"eslint": "^8.13.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"gh-pages": "^5.0.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.3",
"image-minimizer-webpack-plugin": "^3.8.3",
"jest": "^29.6.0",
"jest-environment-jsdom": "^29.6.1",
"mini-css-extract-plugin": "^2.7.6",
"postcss-loader": "^7.3.3",
"sass": "^1.63.6",
"sass-loader": "^13.3.2",
"stylelint": "^15.10.1",
"stylelint-config-recommended": "^13.0.0",
"stylelint-config-sass-guidelines": "^10.0.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-scss": "^5.0.1",
"template-ejs-loader": "^0.9.4",
"terser-webpack-plugin": "^5.3.9",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.9.0"
}
}