-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 2.03 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
{
"name": "@relayd/monorepo-root",
"description": "Monorepo root project for the relay of Chainlink Oracles data to Secret Network contracts",
"version": "0.1.0",
"author": "Jabba Theone <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"common",
"eth-client",
"scrt-client",
"feed-handler",
"node-aio"
],
"main": "dist/index.js",
"types": "types/index.d.ts",
"files": [
"dist/",
"types/",
"*.md",
"!*.spec.*",
"!**/testdata/"
],
"repository": {
"type": "git",
"url": "https://github.com/ja88a/Chainlink-eth-SecretNetwork"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "lerna run build",
"clean": "shx rm -rf ./dist ./*.tsbuildinfo",
"reset": "yarn clean && shx rm -rf ./node_modules ./yarn.lock ./package-lock.json",
"docs": "lerna run docs",
"format": "lerna run format",
"format-text": "prettier --write --prose-wrap always --print-width 80 \"./*.md\" \"./docs/**/*.md\" \"./scripts/**/*.{json,md}\" && lerna run format-text",
"lint": "lerna run lint",
"lint:fix": "lerna run lint-fix",
"setup": "yarn wsrun -mre -t setup && yarn wsrun -mre -t setup",
"test:unit": "lerna run test:unit",
"test:integration": "lerna run test:integration",
"test:example": "yarn workspace @relayd/eth-client test",
"test:example-start-server": "node ./helpers/server.js",
"test": "lerna run test"
},
"devDependencies": {
"@tsconfig/node12": "^1.0.7",
"@types/eslint": "^7.2.7",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"lerna": "^4.0.0",
"prettier": "^2.0.5",
"shx": "^0.3.3",
"ts-node": "^8.10.2",
"typedoc": "^0.20.36",
"typescript": "^4.2.4",
"webpack": "^5.37.1",
"wsrun": "^5.2.4"
}
}