-
-
Notifications
You must be signed in to change notification settings - Fork 603
/
package.json
99 lines (99 loc) · 3.01 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
{
"name": "webpack-cli-monorepo",
"description": "CLI for webpack & friends",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/webpack/webpack-cli.git"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
},
"engines": {
"node": ">=14.15.0"
},
"keywords": [
"webpack",
"cli",
"scaffolding",
"module",
"bundler",
"web"
],
"workspaces": [
"./packages/*"
],
"scripts": {
"clean": "del-cli \"*.tsbuildinfo\" \"packages/**/*.tsbuildinfo\" \"packages/*/lib/!(*.tpl)\" \"**/.yo-rc.json\"",
"prebuild": "yarn clean",
"prebuild:ci": "yarn clean && node ./scripts/setup-build.js",
"build": "tsc --build",
"build:ci": "tsc --build",
"watch": "tsc --build --watch",
"lint:prettier": "prettier --cache --list-different .",
"lint:eslint": "eslint --cache --ext .js --ext .ts .",
"lint:spelling": "cspell --cache --no-must-find-files --quiet \"**/*.*\"",
"lint": "yarn lint:eslint && yarn lint:prettier && yarn lint:spelling",
"fix": "yarn lint:eslint --fix && yarn lint:prettier --write",
"pretest": "yarn build && yarn lint",
"test": "jest --reporters=default",
"test:smoketests": "nyc node smoketests",
"test:coverage": "nyc --no-clean jest",
"test:cli": "jest test --reporters=default",
"test:packages": "jest packages/ --reporters=default",
"test:ci": "yarn test:cli && yarn test:packages",
"test:watch": "jest test/ packages/ --watch",
"publish:monorepo": "yarn build && lerna version && lerna publish from-git",
"update:docs": "node ./scripts/update-docs",
"prepare": "husky"
},
"peerDependencies": {
"webpack": "5.x.x"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.2",
"@babel/register": "^7.15.8",
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/jest": "^29.5.13",
"@types/node": "^22.5.5",
"@types/rechoir": "^0.6.1",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"coffeescript": "^2.7.0",
"colorette": "^2.0.16",
"concat-stream": "^2.0.0",
"cspell": "^8.3.2",
"css-loader": "^6.10.0",
"del-cli": "^5.0.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-n": "^17.10.2",
"execa": "^5.0.0",
"get-port": "^5.1.1",
"husky": "^9.1.4",
"jest": "^29.4.1",
"jest-watch-typeahead": "^2.2.2",
"lerna": "^8.1.8",
"lint-staged": "^15.2.9",
"mini-css-extract-plugin": "^2.6.1",
"nyc": "^15.1.0",
"prettier": "^3.3.3",
"readable-stream": "^4.5.2",
"rimraf": "^3.0.2",
"sass": "^1.54.9",
"sass-loader": "^13.0.2",
"strip-ansi": "^6.0.1",
"style-loader": "^3.3.1",
"ts-jest": "^29.0.1",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"webpack": "^5.94.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-dev-server": "^5.1.0"
}
}