-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 887 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 887 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
30
{
"name": "my-webpack-project",
"version": "1.0.0",
"description": "My webpack project",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"rm": "rimraf dist pkg",
"build": "rimraf dist pkg && webpack --mode=production",
"build:dev": "rimraf dist pkg && webpack --mode=development",
"build:prod": "rimraf dist pkg && webpack --mode=production",
"watch": "rimraf dist pkg && webpack --watch",
"serve": "rimraf dist pkg && webpack serve"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@wasm-tool/wasm-pack-plugin": "^1.3.3",
"@webpack-cli/generators": "^2.0.0",
"html-webpack-plugin": "^5.3.1",
"rimraf": "^2.7.1",
"webpack": "^5.30.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"comlink": "^4.3.0"
}
}