-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
package.json
61 lines (61 loc) · 1.62 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
{
"private": true,
"license": "MIT",
"workspaces": [
"evm-test-helpers",
"evm-contracts",
"feeds",
"explorer",
"explorer/client",
"integration",
"integration-scripts",
"operator_ui",
"styleguide",
"tools",
"tools/ci-ts",
"tools/cypress-job-server",
"tools/echo-server",
"tools/external-adapter",
"tools/json-api-client",
"tools/local-storage",
"tools/redux",
"tools/ts-helpers",
"belt"
],
"engines": {
"node": "~10.16"
},
"scripts": {
"lint": "eslint --ext js,jsx,ts,tsx .",
"setup": "wsrun -me -t setup",
"setup:chainlink": "yarn wsrun -mre -p @chainlink/contracts -p @chainlink/operator-ui -t setup",
"setup:contracts": "yarn wsrun -mre -p @chainlink/contracts -t setup",
"setup:integration": "yarn wsrun -mre -p @chainlink/integration* -t setup",
"setup:explorer": "yarn wsrun -mre -p '@chainlink/explorer*' -t setup",
"clean": "wsrun -me clean",
"postinstall": "patch-package"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.15.0",
"@typescript-eslint/parser": "^2.12.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.0.0",
"patch-package": "^6.2.1",
"postinstall-postinstall": "^2.0.0",
"prettier": "^1.19.1",
"typescript": "^3.7.4",
"wsrun": "^5.2.0"
},
"resolutions": {
"**/sha3": "^2.0.7",
"**/keccak": "^3.0.0",
"**/source-map-support": "0.5.16",
"**/solc": "^0.6.4"
},
"dependencies": {
"tslib": "^1.11.1"
}
}