-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 731 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 731 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
{
"name": "rspack-repro",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm-run-all build:* --sequential --print-name",
"build:rspack": "RSPACK=1 pnpm rspack -c ./config.mjs",
"build:webpack": "WEBPACK=1 pnpm webpack -c ./config.mjs",
"dev:webpack": "WEBPACK=1 webpack serve -c ./config.mjs",
"dev:rspack": "RSPACK=1 rspack dev -c ./config.mjs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@rspack/cli": "latest",
"html-webpack-plugin": "^5.5.3",
"webpack": "^5.79.0",
"webpack-cli": "^5.0.1"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}