-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·68 lines (68 loc) · 1.86 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
{
"name": "chaingraph-indexer",
"version": "1.0.0",
"description": "Chaingraph indexer",
"main": "index.js",
"repository": "[email protected]:chaingraph/chaingraph-indexer.git",
"author": "blockmatic.io",
"license": "MIT",
"scripts": {
"dev": "env-cmd ts-node-dev --no-notify --no-deps --respawn src/index",
"build": "tsc -b",
"lint": "eslint --ignore-path .gitignore \"**/*.+(js|ts|tsx)\"",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|json|ts|tsx)\""
},
"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",
"@types/bluebird": "^3.5.36",
"@types/lodash.chunk": "^4.2.6",
"@types/lodash.omit": "^4.5.6",
"@types/lodash.uniq": "^4.5.6",
"@types/lodash.uniqby": "^4.7.6",
"@types/node": "^16.9.4",
"@types/text-encoding": "^0.0.36",
"env-cmd": "^10.1.0",
"env-var": "^7.0.1",
"eslint": "7",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.3"
},
"dependencies": {
"@blockmatic/eosio-ship-reader": "^0.5.0",
"@eoscafe/hyperion": "^3.3.2",
"@eosrio/node-abieos": "^2.1.1",
"@greymass/eosio": "^0.7.0",
"@wharfkit/antelope": "^1.0.7",
"bluebird": "^3.7.2",
"eos-common": "^0.8.1",
"isomorphic-fetch": "^3.0.0",
"lodash": "^4.17.21",
"lodash.chunk": "^4.2.0",
"lodash.omit": "^4.5.0",
"lodash.uniq": "^4.5.0",
"lodash.uniqby": "^4.7.0",
"node-fetch": "^2.6.1",
"p-queue": "^7.1.0",
"p-throttle": "4.1.1",
"pg-promise": "^10.11.0",
"rxjs": "^7.3.0",
"text-encoding": "^0.7.0",
"tslog": "^3.2.2"
}
}