forked from skmgoldin/tcr
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.16 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
{
"name": "sol-tcr",
"version": "0.0.1",
"description": "A generic, string-keyed TCR in Solidity",
"scripts": {
"compile": "truffle compile",
"install": "truffle install",
"deploy-rinkeby": "truffle migrate --network rinkeby",
"deploy-mainnet": "truffle migrate --network mainnet",
"deploy-ganache": "truffle migrate --network ganache",
"test": "npm run lint ./ && truffle test",
"fix": "eslint --fix",
"lint": "eslint"
},
"authors": [
"Mike Goldin",
"Isaac Kang",
"Terry Li",
"Irene Lin",
"Akua Nti",
"Kenan O'Neal",
"Cem Ozer",
"Aspyn Palatnick",
"Yorke Rhodes",
"Mira Zeitlin"
],
"license": "ISC",
"dependencies": {
"bignumber.js": "5.0.0",
"bip39": "2.5.0",
"bn.js": "4.11.8",
"ethereumjs-abi": "0.6.5",
"ethereumjs-wallet": "0.6.0",
"ethjs": "0.3.1",
"ethjs-provider-http": "0.1.6",
"ethjs-query": "0.3.2",
"ethjs-rpc": "0.1.8",
"ethjs-util": "0.1.4",
"truffle": "4.0.6",
"truffle-hdwallet-provider": "0.0.3"
},
"devDependencies": {
"eslint": "4.15.0",
"eslint-config-airbnb-base": "12.1.0",
"eslint-plugin-import": "2.8.0"
}
}