-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 858 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 858 Bytes
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
{
"name": "rspack-repro",
"version": "1.0.0",
"license": "MIT",
"type": "module",
"scripts": {
"build": "npm-run-all build:* --sequential --print-name",
"build:rspack": "cross-env RSPACK=1 rspack",
"build:rsbuild": "rsbuild build",
"build:webpack": "cross-env WEBPACK=1 webpack -c ./rspack.config.mjs",
"dev:rspack": "cross-env RSPACK=1 rspack dev",
"dev:rsbuild": "rsbuild",
"dev:webpack": "cross-env WEBPACK=1 webpack serve -c ./rspack.config.mjs"
},
"dependencies": {
"@rspack/cli": "^2.0.0",
"@rspack/core": "^2.0.0",
"html-webpack-plugin": "^5.6.7",
"webpack": "^5.106.2",
"webpack-cli": "^7.0.2"
},
"devDependencies": {
"@rsbuild/core": "^2.0.2",
"@rspack/dev-server": "^2.0.1",
"cross-env": "^10.1.0",
"npm-run-all2": "^8.0.4"
},
"packageManager": "pnpm@10.33.2"
}