-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.25 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
{
"name": "relevant-contracts",
"version": "0.0.1",
"private": true,
"scripts": {
"test": "truffle test",
"watch": "npm-watch",
"coverage": "./node_modules/.bin/solidity-coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:sol": "solium -d .",
"lint:sol:fix": "solium -d . --fix"
},
"dependencies": {
"connect": "^3.6.6",
"npm-watch": "^0.3.0",
"serve-static": "^1.13.2",
"solium": "^1.1.5",
"truffle-contract": "^3.0.6",
"truffle-hdwallet-provider": "0.0.3",
"zeppelin-solidity": "^1.6.0"
},
"watch": {
"test": {
"patterns": [
"truffle",
"test",
"contracts"
],
"extensions": "js,json,sol"
}
},
"devDependencies": {
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.18.0",
"babel-preset-stage-3": "^6.17.0",
"babel-register": "^6.23.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.0.0",
"chai-bignumber": "^2.0.2",
"dotenv": "^4.0.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-react": "^7.11.1",
"solidity-coverage": "^0.5.11",
"web3": "^1.0.0-beta.34",
"web3-utils": "^1.0.0-beta.34"
}
}