-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.1 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
{
"name": "ledger-experiments",
"version": "1.0.0",
"description": "Experiment project to find and document various ledger use cases.",
"main": "index.js",
"repository": "[email protected]:Neufund/ledger-experiments.git",
"author": "Tomek Banach <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"build": "webpack --config ./webpack.config.js",
"start": "webpack-dev-server --config ./webpack.config.js"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-transform-regenerator": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/runtime": "^7.3.4",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^3.2.0",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1"
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"@ledgerhq/hw-app-eth": "^4.41.1",
"@ledgerhq/hw-transport-u2f": "^4.41.1",
"@ledgerhq/web3-subprovider": "^4.41.1",
"web3": "0.20.2",
"web3-provider-engine": "^14.1.0"
}
}