-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathpackage.json
121 lines (121 loc) · 3.76 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"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",
"storybook": "start-storybook -p 9001 -c .storybook",
"lint": "standard --fix --verbose --global web3 --global assert --global context --global contract --global artifacts | snazzy",
"lint-ci": "standard --verbose --global web3 --global assert --global context --global contract --global artifacts | snazzy",
"test": "NODE_ENV=test jest",
"test-ci": "NODE_ENV=test yarn jest gui/ --coverage --reporters jest-silent-reporter",
"test-e2e": "NODE_ENV=test yarn jest e2e/ -i",
"test-sol": "./internal/ci/truffle_test",
"watch": "NODE_ENV=test jest --watchAll --notify",
"flatten": "./internal/bin/flatten-ropsten"
},
"dependencies": {
"@ensdomains/ens": "^0.1.1",
"link_token": "^1.0.1",
"openzeppelin-solidity": "^1.12.0",
"solidity-cborutils": "github:smartcontractkit/solidity-cborutils"
},
"devDependencies": {
"@material-ui/core": "^3.8.1",
"@material-ui/icons": "^3.0.1",
"@storybook/react": "^4.0.9",
"axios": "^0.18.0",
"babel-eslint": "^10.0.1",
"babel-plugin-transform-es3-member-expression-literals": "^6.22.0",
"babel-plugin-transform-es3-property-literals": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"bignumber.js": "^8.0.1",
"cbor": "^4.1.1",
"change-case": "^3.0.2",
"console.table": "^0.10.0",
"enzyme": "^3.4.4",
"enzyme-adapter-react-16": "^1.2.0",
"enzyme-matchers": "^7.0.1",
"eslint-config-react-tools": "1.x.x",
"eth-ens-namehash": "^2.0.8",
"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": "^7.2.5",
"formik": "^1.0.3",
"ganache-cli": "beta",
"humps": "^2.0.1",
"isomorphic-unfetch": "^3.0.0",
"jest": "^23.5",
"jest-environment-enzyme": "^7.0.1",
"jest-puppeteer": "^3.5.1",
"jest-silent-reporter": "^0.1.0",
"json-api-normalizer": "^0.4.13",
"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",
"promise.prototype.finally": "^3.1.0",
"prop-types": "^15.6.2",
"puppeteer": "^1.10.0",
"query-string": "^6.1.0",
"react": "^16.6.3",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.6.3",
"react-hot-loader": "^4.3.4",
"react-jss": "^8.6.1",
"react-redux": "^5.0.7",
"react-resize-detector": "^3.2.0",
"react-router": "^4.3.1",
"react-static": "^5.9.12",
"react-time-ago": "^3.0.3",
"react-universal-component": "^3.0.0",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.3",
"redux-object": "^0.5.6",
"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",
"storybook-addon-material-ui": "^0.9.0-alpha.16",
"truffle": "5.0.0-next.24",
"truffle-contract": "^3.0.6",
"truffle-flattener": "^1.2.8",
"url": "^0.11.0",
"use-react-hooks": "^1.0.7",
"uuid": "^3.3.2",
"web3": "^1.0.0-beta.35",
"wscat": "^2.2.1"
},
"files": [
"/tools/sa_requester/bin",
"/tools/sa_requester/lib",
"/solidity",
"/zos.json"
],
"standard": {
"parser": "babel-eslint",
"env": [
"jest"
],
"ignore": [
"**/gui/dist/",
"**/internal/",
"**/examples/",
"**/solidity/"
]
}
}