generated from web-infra-dev/rspack-repro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 960 Bytes
/
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
{
"name": "rspack-repro",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm-run-all build:* --sequential --print-name",
"build:rspack": "cross-env RSPACK=1 pnpm rspack -c ./rspack.config.mjs",
"build:rsbuild": "rsbuild build",
"build:webpack": "cross-env WEBPACK=1 pnpm webpack -c ./rspack.config.mjs",
"dev:rspack": "cross-env RSPACK=1 rspack dev -c ./rspack.config.mjs",
"dev:rsbuild": "rsbuild dev",
"dev:webpack": "cross-env WEBPACK=1 webpack serve -c ./rspack.config.mjs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@rspack/cli": "^1.0.0",
"@rspack/core": "^1.0.0",
"html-webpack-plugin": "^5.6.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"devDependencies": {
"@rsbuild/core": "^1.0.1",
"cross-env": "^7.0.3",
"npm-run-all2": "^6.2.0"
}
}