-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 994 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
32
33
34
35
36
{
"name": "my-webpack-project",
"version": "1.0.0",
"description": "My webpack project",
"main": "src/main.mjs",
"directories": {
"doc": "docs"
},
"scripts": {
"upload": "rm -fr docs/* ; cp dist/* docs/ -r ",
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch"
},
"keywords": [],
"author": "Laan Tungir",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.22.11",
"@babel/preset-env": "^7.22.14",
"@webpack-cli/generators": "^3.0.7",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"style-loader": "^3.3.3",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"workbox-webpack-plugin": "^7.0.0"
},
"dependencies": {
"crypto-browserify": "^3.12.0",
"node-polyfill-webpack-plugin": "^2.0.1",
"nostr-keys": "^1.1.0",
"qrcode-svg": "^1.1.0"
}
}