-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.32 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
{
"name": "messembed-sdk",
"version": "0.9.1",
"description": "Messembed Node.js SDK",
"author": {
"name": "Edgar Pogosyan",
"email": "[email protected]",
"url": "https://github.com/Edgar-P-yan"
},
"repository": {
"url": "https://github.com/Messembed/node-messembed-sdk",
"type": "git"
},
"homepage": "https://docs.messembed.com",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{src}/**/*.ts\" --fix"
},
"dependencies": {
"axios": "^0.21.1",
"lodash": "^4.17.20",
"socket.io-client": "^2"
},
"devDependencies": {
"@nestjs/common": "^7.6.5",
"@types/lodash": "^4.14.167",
"@types/node": "14",
"@types/socket.io-client": "^1.4.35",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.6.3",
"source-map-support": "^0.5.19",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"peerDependencies": {
"@nestjs/common": "*"
}
}