-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.79 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
{
"name": "@kryptokrauts/event-processor-node-lib",
"version": "1.0.16",
"description": "Wrapper for ease listening on antelope blockchain based on @blockmatic/antelope-ship-reader",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"dev-aa": "env-cmd -f ./.env_local tsnd examples/atomicassets.ts | npx pino-pretty --colorize",
"dev-am": "env-cmd -f ./.env_local_am tsnd examples/atomicmarket.ts | npx pino-pretty --colorize",
"dev-service": "env-cmd -f ./.env_local_service tsnd examples/service.ts | npx pino-pretty --colorize",
"dev-audit": "env-cmd -f ./.env_local_audit tsnd examples/audit.ts | npx pino-pretty --colorize",
"lint": "eslint --ignore-path .eslintignore \"**/*.+(js|ts|tsx)\"",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|json|ts|tsx)\"",
"format:check": "prettier -c .",
"typecheck": "tsc --noEmit --incremental false",
"build": "tsc -p .",
"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"
},
"author": "kryptokrauts",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "6.13.2",
"@typescript-eslint/parser": "6.13.2",
"eslint": "8.55.0",
"pino-pretty": "10.2.3",
"prettier": "3.1.0",
"ts-node-dev": "2.0.0",
"typescript": "5.3.2"
},
"dependencies": {
"@blockmatic/eosio-ship-reader": "1.2.0",
"@types/node": "20.10.3",
"@types/node-fetch": "2.6.9",
"dotenv": "16.3.1",
"env-cmd": "10.1.0",
"express": "4.18.3",
"kafkajs": "2.2.4",
"pino": "8.16.2"
},
"resolutions": {
"@eosrio/node-abieos": "2.1.1",
"rxjs": "6.6.7"
}
}