forked from freshheads/webpack-config-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.99 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
{
"name": "@freshheads/webpack-config-builder",
"version": "3.0.4",
"description": "Uses an adapter pattern to build webpack configurations. This makes it possible for teams to create and maintain their base webpack setup and be able to update it from a central git repo, instead of having to change every project individually",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"test": "jest --config=jest.config.js --detectOpenHandles --silent",
"test:watch": "jest --watch --notify --config=jest.config.js --detectOpenHandles --silent",
"prettier:check": "prettier --check './**/*.{js,ts,json,md}'",
"prettier:write": "prettier --write './**/*.{js,ts,json,md}'",
"prepare": "npm run build"
},
"keywords": [
"webpack",
"config",
"builder",
"build",
"freshheads",
"configuration"
],
"author": {
"name": "Freshheads",
"url": "https://freshheads.com",
"email": "[email protected]"
},
"contributors": [
{
"name": "Martin Broos",
"url": "https://freshheads.com"
},
{
"name": "Gijs Nieuwenhuis",
"url": "https://freshheads.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/freshheads/webpack-config-builder.git"
},
"engines": {
"node": ">=12.13.0"
},
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@types/copy-webpack-plugin": "^6.0.0",
"@types/deepmerge": "^2.2.0",
"@types/jest": "^26.0.12",
"@types/mini-css-extract-plugin": "^0.9.1",
"@types/semver": "^7.3.3",
"@types/terser-webpack-plugin": "^4.1.0",
"@types/webpack": "^4.41.21",
"autoprefixer": "^9.8.6",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.1.0",
"css-loader": "^4.2.2",
"cssnano": "^4.1.10",
"fibers": "^5.0.0",
"file-loader": "^6.1.0",
"husky": "^4.2.5",
"jest": "^26.4.2",
"jquery": "^3.5.1",
"lint-staged": "^10.2.13",
"mini-css-extract-plugin": "^0.11.0",
"postcss": "^8.0.9",
"postcss-loader": "^4.0.2",
"prettier": "^2.1.1",
"resolve-url-loader": "^3.1.1",
"sass": "^1.26.10",
"sass-loader": "^10.0.1",
"terser-webpack-plugin": "^4.1.0",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-stats-plugin": "^0.3.2"
},
"dependencies": {
"chalk": "^4.1.0",
"deepmerge": "^4.2.2",
"semver": "^7.3.2"
},
"peerDependencies": {
"webpack": "^4.41.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": "prettier --write"
}
}