-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 4.17 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 4.17 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "webpack-must-have",
"version": "1.5.1",
"description": "Must-have config for Webpack 5",
"main": "main.tsx",
"scripts": {
"test": "exit 0",
"start": "npm run serve",
"serve": "webpack serve --open --config webpack.devServer.js",
"serve-proxy": "npm run serve -- --env=proxy=https://localhost:44360/",
"build-prod": "webpack --mode production --config webpack.prod.js",
"build-prod-withMap": "npm run build-prod -- --sourceMap",
"build-dev": "webpack --mode development --config webpack.dev.js",
"lint": "npm run lint-es && npm run lint-styles && npm run lint-ts && npm run lint-md",
"lint-ts": "tsc --skipLibCheck --incremental --noEmit",
"lint-es": "eslint --fix --cache ./**/*.{mjs,js,jsx,ts,tsx,json} && prettier --write **/*.{mjs,js,jsx,ts,tsx,json,html} --log-level warn",
"lint-styles": "stylelint --fix --cache ./**/*.{css,scss,less} && prettier --write **/*.{css,scss,less} --log-level warn",
"lint-md": "markdownlint --fix **/*.md --ignore node_modules",
"prepare": "husky",
"prepareLegacy": "husky init && shx rm -rf .git/hooks && shx ln -s ../.husky .git/hooks && git config --unset core.hooksPath"
},
"engines": {
"node": ">=20.10.0 <=24"
},
"engineStrict": true,
"repository": {
"type": "git",
"url": "git+https://github.com/Yegorich555/webpack-must-have.git"
},
"keywords": [
"React",
"Webpack",
"ReactJS",
"webpack-must-have",
"mock"
],
"author": "Yegor.Golubchik",
"license": "MIT",
"bugs": {
"url": "https://github.com/Yegorich555/webpack-must-have/issues"
},
"homepage": "https://github.com/Yegorich555/webpack-must-have#readme",
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@types/express": "^5.0.6",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"ajv": "^8.17.1",
"autoprefixer": "^10.4.22",
"babel-loader": "^10.0.0",
"browserslist": "^4.28.1",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"compression-webpack-plugin": "^11.1.0",
"copy-webpack-plugin": "^13.0.1",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.3",
"css-unicode-loader": "^1.0.3",
"html-webpack-plugin": "^5.6.5",
"mini-css-class-name": "^0.15.1",
"mini-css-extract-plugin": "^2.9.4",
"mini-svg-data-uri": "^1.4.4",
"postcss": "^8.5.6",
"postcss-hover-media-feature": "^1.0.2",
"postcss-loader": "^8.2.0",
"postcss-normalize": "^13.0.1",
"postcss-scss": "^4.0.9",
"preload-webpack-plugin": "^3.0.0-beta.4",
"sass": "^1.94.2",
"sass-loader": "^16.0.6",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.15",
"ts-loader": "^9.5.4",
"tsconfig-paths-webpack-plugin": "^4.2.0",
"typescript": "^5.9.3",
"webpack": "^5.103.0",
"webpack-cli": "^6.0.1",
"webpack-merge": "^6.0.1",
"webpack-obsolete-plugin": "^1.0.5"
},
"dependencies": {
"react": "^19.2.1",
"react-dom": "^19.2.1",
"web-ui-pack": "^1.2.6"
},
"optionalDependencies": {
"@eslint/compat": "^1.4.1",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.33.0",
"@types/express": "^5.0.5",
"eslint": "^9.39.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-css-modules": "^2.12.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-unused-imports": "^4.3.0",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"markdownlint": "^0.39.0",
"markdownlint-cli": "^0.45.0",
"prettier": "^3.7.4",
"prettier-eslint": "^16.4.2",
"stylelint": "^16.26.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recommended-scss": "^16.0.2",
"stylelint-no-unsupported-browser-features": "^8.0.5",
"stylelint-prettier": "^5.0.3",
"stylelint-scss": "^6.13.0",
"typescript-eslint": "^8.48.1",
"webpack-dev-server": "^5.2.2",
"webpack-mock-server": "^1.0.23"
}
}