forked from livekit/node-sdks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.37 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
{
"name": "@dtelecom/server-sdk-js",
"version": "1.0.13",
"description": "Server-side SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "git@github.com:dTelecom/server-sdk-js.git",
"author": "",
"license": "Apache-2.0",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"build-docs": "typedoc",
"proto": "./generate-proto.sh",
"lint": "eslint .",
"format": "prettier --write src",
"format:check": "prettier --check src",
"prepare": "npm run build",
"test": "jest"
},
"dependencies": {
"axios": "^0.21.0",
"camelcase-keys": "^7.0.0",
"ip-to-int": "^0.3.1",
"jsonwebtoken": "^8.5.1",
"key-encoder": "^2.0.3",
"protobufjs": "^6.10.2",
"web3": "^1.10.0",
"web3-utils": "^1.10.0"
},
"devDependencies": {
"@types/geoip-lite": "^1.4.1",
"@types/jest": "^26.0.20",
"@types/jsonwebtoken": "^8.5.0",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.24.0",
"jest": "^26.6.3",
"prettier": "^2.6.2",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.11",
"ts-node": "^9.1.1",
"ts-proto": "^1.131.0",
"typedoc": "^0.22.13",
"typescript": "4.2.x",
"webpack": "^5.9.0",
"webpack-cli": "^4.2.0"
}
}