-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
63 lines (63 loc) · 1.88 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "truffle-init-webpack",
"version": "0.0.2",
"description": "Frontend example using truffle v3",
"scripts": {
"lint": "eslint ./",
"build": "webpack",
"dev": "webpack-dev-server",
"coverage": "./node_modules/.bin/solidity-coverage",
"test": "truffle test",
"watch-test": "watch-run -p 'contracts/*.sol, test/*.js, scripts/*.js' truffle test"
},
"author": "Douglas von Kohorn",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.10",
"babel-plugin-transform-async-to-generator": "~6.24.1",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-env": "^1.1.8",
"babel-preset-es2015": "~6.24.1",
"babel-register": "^6.22.0",
"copy-webpack-plugin": "^4.0.1",
"coveralls": "~2.13.1",
"css-loader": "^0.26.1",
"eslint": "^3.14.0",
"eslint-config-standard": "^6.0.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-mocha": "^4.8.0",
"eslint-plugin-promise": "^3.0.0",
"eslint-plugin-standard": "^2.0.0",
"html-webpack-plugin": "^2.28.0",
"istanbul": "~0.4.5",
"jsdoc-babel": "~0.3.0",
"json-loader": "^0.5.4",
"solidity-coverage": "~0.2.2",
"style-loader": "^0.13.1",
"truffle-contract": "^1.1.11",
"web3": "^0.18.2",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0"
},
"dependencies": {
"@digix/tempo": "~0.2.0",
"@digix/truffle-lightwallet-provider": "~0.1.2",
"async-request": "~1.2.0",
"await-each": "~1.1.0",
"bluebird": "~3.5.0",
"chai": "~4.1.2",
"chai-as-promised": "~7.1.1",
"chai-bignumber": "~2.0.1",
"chai-stats": "~0.3.0",
"csv-parser": "~1.11.0",
"csvdata": "~1.4.0",
"ethereum-address": "0.0.4",
"ethereumjs-testrpc": "~4.1.3",
"json2csv": "~3.11.1",
"moment": "~2.19.1",
"solc": "~0.4.17"
}
}