-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 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
44
45
46
{
"name": "invest-nodejs-grpc-sdk",
"version": "1.2.0",
"description": "",
"main": "dist/sdk.js",
"scripts": {
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"lint": "eslint \"src/**/{*.ts,*.tsx}\"",
"start": "tsc && node dist/index.js",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/test.ts",
"build": "rm -rf ./dist && npx tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/mtvkand/invest-nodejs-grpc-sdk.git"
},
"keywords": [
"trading",
"investment",
"strategy",
"bot"
],
"author": "mtvkand",
"license": "Apache-2.0",
"dependencies": {
"@grpc/grpc-js": "^1.5.10",
"long": "^4.0.0",
"nice-grpc": "^1.1.0",
"protobufjs": "^6.11.2"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/google-protobuf": "^3.15.5",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"grpc-tools": "^1.11.2",
"nodemon": "^2.0.15",
"prettier": "^2.6.1",
"ts-node": "^10.7.0",
"ts-proto": "^1.110.2",
"typescript": "^4.6.3"
}
}