forked from smartcontractkit/chainlink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.8 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "chainlink",
"version": "0.2.0",
"license": "MIT",
"scripts": {
"start": "cd gui && react-static start",
"build": "cd gui && react-static build",
"serve": "cd gui && serve dist -p 3000",
"lint": "standard --fix --verbose | snazzy",
"lint-ci": "standard --verbose | snazzy",
"test": "NODE_ENV=test jest",
"test-ci": "NODE_ENV=test yarn jest -i --reporters jest-silent-reporter",
"watch": "NODE_ENV=test jest --watchAll --notify"
},
"dependencies": {
"change-case": "^3.0.2",
"formik": "^1.0.3",
"linkToken": "github:smartcontractkit/linktoken",
"openzeppelin-solidity": "^1.12.0",
"solidity-cborutils": "github:smartcontractkit/solidity-cborutils"
},
"devDependencies": {
"@material-ui/core": "^1.5.1",
"@material-ui/icons": "^2.0.3",
"axios": "^0.18.0",
"babel-eslint": "^8.2.6",
"babel-plugin-transform-es3-member-expression-literals": "^6.22.0",
"babel-plugin-transform-es3-property-literals": "^6.22.0",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"bignumber.js": "^7.2.1",
"cbor": "^4.1.1",
"console.table": "^0.10.0",
"enzyme": "^3.4.4",
"enzyme-adapter-react-16": "^1.2.0",
"enzyme-matchers": "^6.0.3",
"eslint-config-react-tools": "1.x.x",
"ethereumjs-abi": "^0.6.5",
"ethereumjs-tx": "^1.3.7",
"ethereumjs-util": "^5.2.0",
"ethereumjs-wallet": "^0.6.2",
"ethjs": "^0.4.0",
"fetch-mock": "^6.5.2",
"ganache-cli": "^6.1.8",
"humps": "^2.0.1",
"isomorphic-unfetch": "^2.1.1",
"jest": "^23.5",
"jest-environment-enzyme": "^6.0.3",
"jest-silent-reporter": "^0.1.0",
"json-pretty-html": "^1.1.2",
"local-storage-fallback": "^4.1.1",
"mock-local-storage": "^1.0.5",
"moment": "^2.22.2",
"numeral": "^2.0.6",
"oclif": "^1.11.4",
"query-string": "^6.1.0",
"react": "^16.4.2",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.4.2",
"react-hot-loader": "^4.3.4",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-static": "^5.9.7",
"react-universal-component": "^3.0.0",
"redux": "^4.0.0",
"redux-mock-store": "^1.5.3",
"redux-thunk": "^2.3.0",
"request-promise": "^4.2.2",
"serve": "^10.0.0",
"snazzy": "^7.1.1",
"solc": "^0.4.24",
"solium": "^1.1.8",
"solium-plugin-zeppelin": "^0.0.2",
"standard": "^11.0.1",
"truffle": "^4.1.14",
"truffle-contract": "^3.0.6",
"url": "^0.11.0",
"uuid": "^3.3.2",
"web3": "^1.0.0-beta.35",
"wscat": "^2.2.1"
},
"files": [
"/tools/sa_requester/bin",
"/tools/sa_requester/lib"
],
"standard": {
"parser": "babel-eslint",
"env": [
"jest"
],
"ignore": [
"**/gui/dist/",
"**/internal/",
"**/examples/",
"**/solidity/"
]
}
}