forked from okwme/dapp-scratch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.09 KB
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
{
"name": "dapp-scratch",
"version": "0.0.1",
"main": "./lib/dapp-scratch.js",
"bin": {
"dapp-scratch": "bin/dapp-scratch.js"
},
"author": "Billy Rennekamp <hello@okw.me>",
"license": "ISC",
"dependencies": {
"colors": "^1.1.2",
"commander": "^2.11.0",
"fs-extra": "^4.0.2",
"inquirer": "^4.0.0",
"shelljs": "^0.7.8",
"truffle-contract": "^3.0.1",
"web3": "^1.0.0-beta.24",
"web3-eth": "^1.0.0-beta.24",
"web3-provider-engine": "^13.3.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"eslint": "^4.10.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-watch": "^3.1.3",
"i": "^0.3.6",
"inquirer": "^4.0.0",
"mocha": "^4.0.1",
"npm": "^5.5.1"
},
"scripts": {
"dev": "esw -w ./assets",
"build": "babel assets/sample.js -d lib",
"test": "mocha --exit --compilers js:babel-core/register"
}
}