forked from Tezsure/OrO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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
{
"name": "tezsure-oro",
"version": "1.0.0",
"description": "A oracle on tezos blockchain",
"engines": {
"node": ">= 12.13 <13"
},
"dependencies": {
"@types/node": "^13.11.0",
"conseiljs": "^0.4.1",
"request": "^2.88.2",
"request-promise": "^4.2.5",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "~2.19.2",
"@typescript-eslint/parser": "~2.19.2",
"eslint": "~6.8.0",
"eslint-config-prettier": "~6.10.0",
"rimraf": "~3.0.2",
"tslib": "~1.10.0",
"typescript": "~3.8.2"
},
"scripts": {
"clean": "rimraf build tmp",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"oro": "npm run build && node build/src/main.js",
"deploy-oro-contract": "node oro-contract/deployOrOContract.js"
},
"author": "Tezsure Inc.",
"license": "MIT",
"keywords": [
"tezos",
"blockchain",
"oracle"
]
}