-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
66 lines (66 loc) · 2.15 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
{
"name": "grid3_client",
"author": "Ahmed Hanafy",
"version": "0.0.32",
"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": {
"appdata-path": "^1.0.0",
"axios": "^0.24.0",
"buffer": "^6.0.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"crypto-js": "^4.1.1",
"decimal.js": "^10.3.1",
"http-server": "^14.0.0",
"netaddr": "^1.1.0",
"private-ip": "^2.3.3",
"reflect-metadata": "^0.1.13",
"stellar-sdk": "^9.1.0",
"tfgrid-api-client": "^1.0.2",
"ts-rmb-client-base": "^0.0.1",
"ts-rmb-http-client": "^0.1.9",
"ts-rmb-redis-client": "^0.0.3",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1",
"typescript": "^4.5.2",
"url-join": "^4.0.1",
"url-parse": "^1.5.3",
"uuid4": "^2.0.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^8.4.1",
"eslint-plugin-prettier": "^4.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typedoc": "^0.22.10",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"exports": {
"require": "./dist/node/index.js",
"import": "./dist/es6/index.js"
},
"types": "dist/es6/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "npm-run-all es6-build node-build",
"node-build": "tsc --build tsconfig-node.json",
"es6-build": "tsc --build tsconfig-es6.json",
"server": "ts-node --project tsconfig-node.json server/server.ts",
"lint": "eslint -c .eslintrc.json src/ --fix",
"generate-docs": "typedoc --tsconfig tsconfig-es6.json src/index.ts --out docs/api",
"serve-docs": "http-server docs/api"
}
}