-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.56 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
{
"name": "chainlinked",
"version": "0.2.0",
"license": "MIT",
"scripts": {
"truffle-exec": " truffle exec --network rinkeby ./execTruffle.js",
"dev": "node server.js",
"compile": "./node_modules/.bin/truffle compile",
"console": "./node_modules/.bin/truffle console --network development",
"migrate": "./node_modules/.bin/truffle migrate --reset --network development",
"lint": "./node_modules/.bin/eslint .",
"lint:fix": "./node_modules/.bin/eslint . --fix",
"lint:sol": "./node_modules/.bin/solium -d .",
"lint:sol:fix": "./node_modules/.bin/solium -d . --fix",
"lint:all": "npm run lint && npm run lint:sol",
"lint:all:fix": "npm run lint:fix && npm run lint:sol:fix",
"test": "./node_modules/.bin/truffle test --network development"
},
"dependencies": {
"chainlink": "^0.6.2",
"chainlink-test-helpers": "^0.6.0-3",
"next": "^8.1.0",
"next-router": "^1.3.6",
"next-routes": "^1.4.2",
"openzeppelin-solidity": "^1.12.0",
"react": "^16.8.6",
"truffle-contract": "^4.0.16",
"truffle-hdwallet-provider": "^1.0.9",
"web3": "^1.0.0-beta.55"
},
"devDependencies": {
"bn.js": "^4.11.8",
"eslint": "^5.14.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"ethereumjs-abi": "^0.6.6",
"ethereumjs-util": "^6.1.0",
"solium": "^1.2.3",
"solium-plugin-zeppelin": "^0.0.2",
"truffle": "^5.0.4",
"webpack": "^4.31.0"
}
}