-
-
Notifications
You must be signed in to change notification settings - Fork 660
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.81 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.81 KB
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
{
"name": "webpack-cli-monorepo",
"private": true,
"description": "CLI for webpack & friends",
"keywords": [
"webpack",
"cli",
"scaffolding",
"module",
"bundler",
"web"
],
"repository": {
"type": "git",
"url": "https://github.com/webpack/webpack-cli.git"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
},
"license": "MIT",
"workspaces": [
"./packages/*"
],
"scripts": {
"clean": "del-cli \"*.tsbuildinfo\" \"packages/**/*.tsbuildinfo\" \"packages/*/lib/!(*.tpl)\" \"**/.yo-rc.json\"",
"prebuild": "npm run clean",
"prebuild:ci": "npm run clean && node ./scripts/setup-build.js",
"build": "tsc --build",
"watch": "tsc --build --watch",
"lint": "npm run lint:code && npm run lint:spellcheck",
"lint:code": "eslint --cache .",
"lint:spellcheck": "cspell --cache --no-must-find-files --quiet \"**/*.*\"",
"fmt": "npm run fmt:base -- --log-level warn --write",
"fmt:check": "npm run fmt:base -- --check",
"fmt:base": "prettier --cache --ignore-unknown .",
"fix": "npm run fix:code",
"fix:code": "npm run lint:code -- --fix",
"pretest": "npm run build && npm run lint",
"test": "npm run test:base",
"test:base": "node --experimental-vm-modules ./node_modules/jest-cli/bin/jest",
"test:smoketests": "nyc node smoketests",
"test:coverage": "nyc --no-clean npm run test:base -- --coverage",
"update:docs": "node ./scripts/update-docs",
"version": "node ./node_modules/.bin/changeset version && node ./scripts/sync-changelogs.js",
"release": "npm run build && node ./node_modules/.bin/changeset publish",
"prepare": "husky"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.2",
"@babel/register": "^7.15.8",
"@changesets/cli": "^2.30.0",
"@changesets/get-github-info": "^0.8.0",
"@types/jest": "^30.0.0",
"@types/node": "^22.5.5",
"@types/rechoir": "^0.6.1",
"coffeescript": "^2.7.0",
"colorette": "^2.0.16",
"concat-stream": "^2.0.0",
"cspell": "^9.4.0",
"css-loader": "^7.1.2",
"del-cli": "^7.0.0",
"eslint": "^9.29.0",
"eslint-config-webpack": "^4.5.0",
"execa": "^9.6.1",
"get-port": "^7.1.0",
"husky": "^9.1.4",
"jest": "^30.2.0",
"lint-staged": "^16.3.2",
"mini-css-extract-plugin": "^2.6.1",
"nyc": "^18.0.0",
"prettier": "^3.6.0",
"readable-stream": "^4.5.2",
"sass": "^1.54.9",
"sass-loader": "^16.0.2",
"style-loader": "^4.0.0",
"ts-jest": "^29.0.1",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"webpack": "^5.105.4",
"webpack-bundle-analyzer": "^5.1.0",
"webpack-dev-server": "^5.1.0"
},
"peerDependencies": {
"webpack": "5.x.x"
},
"engines": {
"node": ">=20.9.0"
}
}