-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
73 lines (73 loc) · 1.95 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
{
"name": "@blockmatic/eosio-ship-reader",
"version": "1.2.0",
"description": "Reactive multi-threaded EOSIO state reader for NodeJS",
"repository": "git@github.com:blockmatic/eosio-ship-reader.git",
"author": "blockmatic.io",
"license": "MIT",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"dev": "scripts/dev",
"build": "rimraf dist && tsc -b",
"watch": "rimraf dist && tsc -b -w",
"lint": "eslint --ignore-path .gitignore \"**/*.+(js|ts|tsx)\"",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|json|ts|tsx)\"",
"example": "./scripts/dev",
"prepare": "yarn run build",
"prepublishOnly": "yarn run format",
"preversion": "yarn run lint",
"version": "yarn run format && git add -A src",
"postversion": "git push && git push --tags"
},
"lint-staged": {
"*.{ts,tsx,js}": [
"prettier --write",
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@blockmatic/eslint-config": "^2.0.0",
"@blockmatic/prettier-config": "^2.0.0",
"@blockmatic/tsconfig": "^2.0.0",
"@types/lodash.omit": "^4.5.6",
"@types/node": "^16.0.0",
"@types/text-encoding": "^0.0.36",
"@types/ws": "^7.4.6",
"all-contributors-cli": "^6.20.0",
"denoify": "^1.5.3",
"eslint": "7",
"husky": "^7.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-node-dev": "^1.1.8",
"typescript": "^4.3.5"
},
"dependencies": {
"@eosrio/node-abieos": "^2.1.1",
"@types/node-fetch": "^2.5.10",
"eosjs": "^22.0.0",
"lodash.omit": "^4.5.0",
"node-fetch": "^2.6.1",
"node-worker-threads-pool": "1.4.3",
"p-queue": "6.6.2",
"rxjs": "^6.6.3",
"text-encoding": "^0.7.0",
"winston": "^3.3.3",
"ws": "^7.5.1"
},
"peerDependencies": {
"typescript": "^4.3.5"
}
}