-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.54 KB
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
{
"name": "@telosnetwork/validator-checks",
"version": "1.1.3",
"description": "performs criteria validation checks for block producers ",
"main": "dist/server.js",
"module": "dist/server.js",
"exports": {
".": "./dist/server.js",
"./client": "./dist/client"
},
"repository": "https://github.com/telosnetwork/validator-checks.git",
"keywords": [
"telos",
"tlos",
"eosio",
"blockchain"
],
"author": "Don Peat",
"license": "-",
"paths": {
"services": "./src/services",
"types": "./src/types"
},
"scripts": {
"cli": "ts-node src/index.ts",
"test": "jest",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"build": "tsc -p tsconfig.json",
"build-client": "yarn build && esbuild src/index.ts --minify --outfile=dist/client/index.js",
"build-server": "esbuild src/index.ts --bundle --minify --platform=node --sourcemap=external --outfile=dist/server.js",
"build-all": "yarn clean && yarn build-client && yarn build-server",
"clean": "rm -rf dist",
"ts-node": "ts-node"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.9.6",
"@types/text-encoding": "^0.0.36",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"esbuild": "^0.13.9",
"eslint": "^7.32.0",
"jest": "^27.2.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"dependencies": {
"@types/node-fetch": "2.5.4",
"axios": "^0.21.4",
"eosjs": "^22.1.0",
"node-fetch": "^2.6.0"
}
}