forked from 0x070696E65/symbol-node-watcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.2 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
{
"name": "symbol-node-watcher",
"version": "1.0.2",
"description": "",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "shx rm -rf dist && tsc",
"lint": "prettier ./src --write && eslint ./src --ext ts,tsx --report-unused-disable-directives",
"lint:fix": "prettier ./src --write && eslint ./src --ext ts,tsx --report-unused-disable-directives --fix",
"start": "node --loader ts-node/esm src/index.ts",
"npm:publish": "npm run build && publish",
"npm:publish:dry": "npm run build && npm publish --dry-run"
},
"bin": "./node-watcher.sh",
"files": [
"dist",
"node-watcher.sh"
],
"keywords": [],
"author": "toshi",
"license": "MIT",
"devDependencies": {
"@types/eslint": "^9",
"@types/node": "^20.14.1",
"@types/node-cron": "^3.0.11",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"eslint": "8.57",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.3",
"shx": "^0.3.4",
"tslib": "^2.6.2",
"tsx": "^4.16.2",
"typescript": "^5.4.5"
},
"dependencies": {
"log4js": "^6.9.1",
"node-cron": "^3.0.3",
"node-fetch": "^3.3.2",
"pm2": "^5.4.2"
}
}