-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
45 lines (45 loc) · 1.11 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
40
41
42
43
44
45
{
"name": "ldk-sandbox",
"version": "0.1.0",
"description": "Sandbox application for LDK",
"main": "index.js",
"scripts": {
"build-babel": "babel index.js -d dist",
"test": "node ./test.js",
"build": "webpack --config webpack.config.js",
"start-node": "node ./node.js",
"start": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rustwasm/create-wasm-app.git"
},
"keywords": [
"webassembly",
"wasm",
"rust",
"webpack"
],
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"babel-loader": "^8.2.5",
"copy-webpack-plugin": "^5.0.0",
"typescript": "^4.7.4",
"webpack": "^4.29.3",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
},
"dependencies": {
"axios": "^0.27.2",
"bitcoind-rpc": "^0.9.1",
"crypto": "^1.0.1",
"dotenv": "^16.0.1",
"dotenv-expand": "^8.0.3",
"lightningdevkit-node-net": "^0.0.11-0.0-1-ga622cc26-dirty",
"socket.io": "^4.5.1",
"socket.io-client": "^4.5.1"
}
}