forked from alleotech/grid3_client_ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 3.03 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "grid3_client",
"author": "Ahmed Hanafy",
"version": "1.5.0-rc2",
"license": "ISC",
"homepage": "https://github.com/threefoldtech/grid3_client_ts/blob/development/README.md",
"repository": {
"type": "git",
"url": "https://github.com/threefoldtech/grid3_client_ts.git"
},
"dependencies": {
"@jimber/pkid": "1.0.4",
"algosdk": "^1.19.0",
"appdata-path": "^1.0.0",
"await-lock": "^2.1.0",
"axios": "^0.27.2",
"bip39": "^3.0.4",
"buffer": "^6.0.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"crypto-js": "^4.1.1",
"decimal.js": "^10.3.1",
"exponential-backoff": "^3.1.0",
"express": "^4.18.1",
"http-server": "^14.0.0",
"libsodium-wrappers": "^0.7.10",
"netaddr": "^1.1.0",
"private-ip": "^2.3.3",
"reflect-metadata": "^0.1.13",
"stellar-sdk": "^9.1.0",
"tfgrid-api-client": "1.16.4",
"ts-rmb-client-base": "^0.0.1",
"ts-rmb-http-client": "^1.0.7",
"ts-rmb-redis-client": "^0.0.3",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1",
"typescript": "^4.7.4",
"url-join": "^4.0.1",
"url-parse": "^1.5.3",
"uuid4": "^2.0.2"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^8.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.4",
"jest": "^27.4.5",
"lint-staged": "^12.1.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"ts-node": "^10.9.1",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typedoc": "^0.22.10"
},
"exports": {
"require": "./dist/node/index.js",
"import": "./dist/es6/index.js"
},
"types": "dist/es6/index.d.ts",
"files": [
"/dist"
],
"bin": {
"httpserver": "./dist/node/server/http_server.js",
"twinserver": "./dist/node/server/rmb_server.js"
},
"private": false,
"scripts": {
"prepare": "husky install",
"build": "npm-run-all es6-build node-build",
"node-build": "tsc --build tsconfig-node.json",
"es6-build": "tsc --build tsconfig-es6.json",
"server": "echo Not found! Do you mean rmb_server or http_server?",
"rmb_server": "ts-node --project tsconfig-node.json src/server/rmb_server.ts",
"http_server": "ts-node --project tsconfig-node.json src/server/http_server.ts",
"lint": "eslint -c .eslintrc.json . --fix",
"check-lint": "eslint -c .eslintrc.json .",
"generate-docs": "typedoc --tsconfig tsconfig-es6.json src/index.ts --out docs/api",
"serve-docs": "http-server docs/api",
"test": "jest"
},
"lint-staged": {
"*.{ts,js}": [
"eslint -c .eslintrc.json . --fix"
]
}
}