forked from linhuibin98/webpack-chain-next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.64 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
{
"name": "@best-shot/webpack-chain",
"version": "8.1.10",
"main": "src/Config.js",
"typings": "types/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/best-shot/webpack-chain.git"
},
"keywords": [
"webpack",
"config",
"chain",
"fluent",
"api",
"webpack5"
],
"engines": {
"node": ">=10"
},
"files": [
"src",
"types/*.d.ts"
],
"license": "MPL-2.0",
"scripts": {
"fix": "yarn lint:fix && yarn style:fix",
"lint": "eslint --cache --max-warnings 0 --format codeframe .",
"lint:fix": "yarn lint --fix",
"style": "prettier --check .",
"style:fix": "prettier --write .",
"test": "jest",
"test:types": "tsc -p ./types/test/tsconfig.json",
"changelog": "auto-changelog --remote upstream --commit-limit false",
"version": "yarn changelog --package && git add CHANGELOG.md"
},
"dependencies": {
"deepmerge": "^1.5.2",
"javascript-stringify": "^2.1.0"
},
"devDependencies": {
"@bring-it/cli": "^0.9.9",
"@bring-it/npm": "^0.5.9",
"@types/enhanced-resolve": "^3.0.7",
"@types/tapable": "^1.0.12",
"@types/webpack": "^5.28.5",
"auto-changelog": "^2.4.0",
"enhanced-resolve": "^5.17.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^24.7.0",
"jest": "^27.5.1",
"prettier": "^2.8.8",
"typescript": "^4.9.5",
"webpack": "^5.97.1"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"packageManager": "yarn@1.22.22"
}