-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 loc) · 3.67 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
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@humblebee/config-webpack4",
"description": "Centralized configuration for webpack v4",
"version": "0.0.0-development",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"sideEffects": false,
"keywords": [
"build",
"tools",
"webpack"
],
"license": "MIT",
"author": {
"name": "Humblebee AB",
"email": "[email protected]",
"url": "https://www.humblebee.se/"
},
"homepage": "https://github.com/wearehumblebee/config-webpack4",
"repository": {
"type": "git",
"url": "https://github.com/wearehumblebee/config-webpack4.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "microbundle --target node --tsconfig tsconfig.build.json --format cjs,esm",
"commit": "cz",
"dev": "microbundle --target node --tsconfig tsconfig.build.json --format cjs,esm --watch",
"lint": "eslint \"{src,tests}/**/*.{ts,tsx,js,jsx}\"",
"lint:fix": "eslint \"{src,tests}/**/*.{ts,tsx,js,jsx}\" --fix",
"prebuild": "rimraf ./dist/*",
"prepare": "husky install",
"semantic-release": "semantic-release",
"test": "jest",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"webpack": "^4.0",
"webpack-dev-server": "^3.0"
},
"dependencies": {
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^5.0.0",
"copy-webpack-plugin": "^6.1.0",
"dotenv-webpack": "^2.0.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.0",
"imagemin-webpack-plugin": "^2.4.2",
"terser-webpack-plugin": "^4.1.0",
"webpack-merge": "^5.8.0",
"webpack-subresource-integrity": "^1.5.0"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/eslint-parser": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@commitlint/cli": "^16.0.1",
"@commitlint/config-conventional": "^16.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/github": "^8.0.2",
"@semantic-release/npm": "^8.0.3",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/compression-webpack-plugin": "^4.0.0",
"@types/copy-webpack-plugin": "^6.4.0",
"@types/dotenv-webpack": "^1.8.0",
"@types/jest": "^26.0.24",
"@types/svgo": "^1.3.0",
"@types/terser-webpack-plugin": "^4.0.0",
"@types/webpack": "^4.41",
"@types/webpack-dev-server": "^3.11.0",
"@types/webpack-subresource-integrity": "^1.2.0",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"babel-jest": "^27.4.5",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.4.5",
"lint-staged": "^12.1.4",
"microbundle": "^0.14.2",
"prettier": "^2.5.1",
"prettier-eslint": "^13.0.0",
"rimraf": "^3.0.0",
"semantic-release": "^18.0.1",
"typescript": "^4.5.4",
"webpack": "^4.46.0",
"webpack-dev-server": "^3.11.0"
},
"resolutions": {
"@types/svgo": "^1.3.0",
"@types/webpack": "^4.41"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{md,mdx,yml,yaml}": [
"prettier --write"
],
"{src,tests}/**/*.{tx,tsx,js,jsx,mjs,md,mdx,css,yml,yaml}": [
"prettier --write"
]
}
}