forked from shogochiai/eth-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.33 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
43
{
"name": "contracts",
"version": "1.0.0",
"main": "truffle.js",
"author": "Jaynti Kanani <jdkanani@gmail.com>",
"scripts": {
"testrpc":
"ganache-cli --networkId 4474 --mnemonic 'candy maple cake sugar pudding cream honey rich smooth crumble sweet treat' --gasLimit 150000000 --db ./db",
"test": "truffle test",
"compile": "truffle compile",
"deploy": "truffle migrate --network dev",
"lint-contracts": "solhint -d contracts/**/*.sol",
"lint-js": "eslint src/**/*.js test/**/*.js",
"lint": "npm run lint-contracts && npm run lint-js"
},
"license": "MIT",
"dependencies": {
"eth-ens-namehash": "^2.0.0",
"eth-sig-util": "^1.4.2",
"ganache-cli": "^6.1.0",
"solhint": "^1.1.10",
"truffle": "^4.1.3",
"truffle-hdwallet-provider": "0.0.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.4",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"bip39": "^2.5.0",
"eslint": "^4.19.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"ethereumjs-util": "^5.1.5",
"ethereumjs-wallet": "^0.6.0",
"safe-buffer": "^5.1.1"
}
}