-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.13 KB
/
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
37
38
39
{
"dependencies": {
"assert": "^2.0.0",
"bip39": "^3.1.0",
"bitcoinjs-lib": "^5.1.3",
"ethereum-address": "^0.0.4",
"ethereum-private-key-to-address": "^0.0.7",
"ethereumjs-tx": "^1.3.7",
"html-webpack-plugin": "^5.5.0",
"smart-webcomponents": "^15.0.11",
"stream-browserify": "^3.0.0",
"wallet-address-validator": "^0.2.4",
"web3": "^1.9.0"
},
"name": "my-webpack-project",
"version": "1.0.0",
"main": "script.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch"
},
"author": "anton ishchenko",
"license": "ISC",
"description": "My webpack project",
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"@webpack-cli/generators": "^3.0.1",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.3",
"dotenv-webpack": "^8.0.1",
"style-loader": "^3.3.2",
"webpack": "^5.76.3",
"webpack-cli": "^5.0.1"
}
}