-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
35 lines (35 loc) · 1.03 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": "docstamp",
"version": "0.0.1",
"description": "",
"main": "truffle.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "truffle test",
"deploy": "truffle migrate --reset",
"deploy:rinkeby": "truffle migrate --network=rinkeby --reset",
"deploy:mainnet": "truffle migrate --network=mainnet --reset",
"watch:client": "watchify -t [babelify] public/js/main.js -o public/dist/bundle.js",
"build:client": "browserify -t [babelify] public/js/main.js -o public/dist/bundle.js"
},
"author": "",
"license": "MIT",
"dependencies": {
"arraybuffer-to-buffer": "0.0.4",
"dotenv": "^4.0.0",
"ethereumjs-abi": "^0.6.4",
"ethereumjs-util": "^5.1.2",
"moment": "^2.19.1",
"promise-wait": "^1.0.0",
"truffle-contract": "^3.0.1",
"web3-detect-network": "0.0.17"
},
"devDependencies": {
"browserify": "^14.5.0",
"buffer": "^5.0.8",
"truffle-hdwallet-provider": "git+https://github.com/miguelmota/truffle-hdwallet-provider.git",
"watchify": "^3.9.0"
}
}