-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.87 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
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
{
"name": "webpack-boilerplate",
"private": true,
"description": "Webpack 5 Boilerplate with TypeScript, Sass, Jest, Browserslist, PostCSS, Eslint, Stylelint, Prettier, Husky, Lint-Staged, Commitizen, Commitlint, Semantic-Release.",
"scripts": {
"bootstrap:ci": "yarn install --frozen-lockfile --ignore-engines",
"dev": "webpack serve --env development --config config/webpack.dev.js",
"prod": "webpack --env production --config config/webpack.prod.js && webpack --env target=server --config config/webpack.server.config.js",
"serve": "node ./dist/server.js",
"build": "webpack --env production --config config/webpack.prod.js && webpack --env target=serverless --config config/webpack.server.config.js",
"lint:secrets": "npx secretlint **/*",
"lint:md": "markdownlint --fix **/*.md --ignore node_modules --ignore **/CHANGELOG.md",
"lint:js": "eslint --fix **/*.{js,jsx,ts,tsx}",
"lint:css": "stylelint --fix **/*.{css,scss}",
"lint:html": "htmlhint --config ./node_modules/@waldronmatt/htmlhint-config/index.json src/*.html",
"lint": " yarn lint:secrets && yarn lint:md && yarn lint:js && yarn lint:css && yarn lint:html",
"commit": "git-cz",
"test": "jest",
"test:watch": "jest:watch",
"test:coverage": "jest --coverage",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/waldronmatt/webpack-boilerplate.git"
},
"keywords": [
"Webpack",
"TypeScript",
"Sass",
"Jest",
"Browserslist",
"PostCSS",
"Eslint",
"Stylelint",
"Prettier",
"Husky",
"Lint-Satged",
"Commitizen",
"Commitlint",
"Semantic-Release",
"Markdownlint",
"HTMLHint",
"Secretlint",
"YAMLint",
"Actionlint",
"Dependabot",
"CodeQL",
"Semantic Pull Request",
"template",
"boilerplate",
"configurations"
],
"author": "Matthew Waldron",
"license": "MIT",
"dependencies": {
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.18.1",
"express-rate-limit": "^6.4.0",
"express-static-gzip": "^2.1.6",
"helmet": "^6.0.1",
"morgan": "^1.10.0",
"sanitize.css": "^13.0.0",
"serverless-http": "^3.0.1",
"the-new-css-reset": "^1.6.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@principalstudio/html-webpack-inject-preload": "^1.2.7",
"@waldronmatt/browserslist-config": "^1.2.1",
"@waldronmatt/commitlint-config": "^1.1.4",
"@waldronmatt/eslint-config": "^1.5.6",
"@waldronmatt/htmlhint-config": "^1.0.4",
"@waldronmatt/jest-config": "^2.0.0",
"@waldronmatt/lint-staged-config": "^2.0.0",
"@waldronmatt/markdownlint-config": "^1.0.2",
"@waldronmatt/postcss-config": "^1.5.0",
"@waldronmatt/prettier-config": "^1.3.1",
"@waldronmatt/secretlint-config": "^1.0.1",
"@waldronmatt/semantic-release-config": "^2.0.1",
"@waldronmatt/stylelint-config": "^1.2.6",
"@waldronmatt/tsconfig-config": "^2.0.0",
"@waldronmatt/webpack-config": "^2.9.3",
"commitizen": "^4.2.5",
"compression-webpack-plugin": "^10.0.0",
"copy-webpack-plugin": "^11.0.0",
"cz-conventional-changelog": "^3.3.0",
"esbuild-loader": "^2.18.0",
"eslint": "^8.23.1",
"eslint-webpack-plugin": "^3.1.1",
"html-webpack-plugin": "^5.5.0",
"htmlhint": "^1.1.4",
"husky": "^8.0.1",
"image-minimizer-webpack-plugin": "^3.2.3",
"imagemin": "^8.0.1",
"imagemin-jpegtran": "^7.0.0",
"imagemin-webp": "^7.0.0",
"jest": "^29.0.3",
"lint-staged": "^13.0.3",
"markdownlint": "^0.26.2",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"secretlint": "^5.2.4",
"semantic-release": "^19.0.5",
"stylelint": "^14.11.0",
"stylelint-webpack-plugin": "^3.2.0",
"webpack": "^5.73.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0",
"webpack-merge": "^5.8.0",
"webpack-node-externals": "^3.0.0"
}
}