-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
53 lines (53 loc) · 1.41 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
{
"name": "binance-p2p-watcher",
"version": "0.0.1-beta",
"engines": {
"node": ">= 14.16 <15"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/cli-table": "^0.3.0",
"@types/inquirer": "^7.3.1",
"@types/jest": "~26.0.23",
"@types/node": "~14.14.44",
"@types/axios": "^0.14.0",
"@types/ramda": "^0.27.40",
"@typescript-eslint/eslint-plugin": "~4.23.0",
"@typescript-eslint/parser": "~4.23.0",
"eslint": "~7.26.0",
"eslint-config-prettier": "~8.3.0",
"eslint-plugin-jest": "~24.3.6",
"jest": "~26.6.3",
"nodemon": "^2.0.7",
"prettier": "~2.3.0",
"rimraf": "~3.0.2",
"ts-jest": "~26.5.6",
"ts-node": "^9.1.1",
"tsutils": "~3.21.0",
"typescript": "~4.2.4"
},
"scripts": {
"start": "node build/src/main.js",
"start:dev": "nodemon --watch './**/*.ts' --exec 'ts-node' src/main.ts",
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"author": "Nattatorn Yucharoen",
"license": "Apache-2.0",
"dependencies": {
"axios": "^0.21.1",
"chalk": "^4.1.1",
"cli-table": "^0.3.6",
"inquirer": "^8.1.0",
"log-update": "^4.0.0",
"ramda": "^0.27.1",
"tslib": "~2.2.0"
},
"volta": {
"node": "14.16.1"
}
}