-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.36 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.36 KB
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": "rx-socket.io-client",
"version": "1.0.2",
"description": "Socket.IO client based on Reactive Extension",
"main": "./dist/index.js",
"typings": "./dist/src/index.d.ts",
"scripts": {
"build:prod": "webpack --env.production",
"dev": "webpack --env.development --watch",
"build:dev": "webpack --env.development",
"test": "jest"
},
"keywords": [
"socket.io",
"rx",
"websocket"
],
"author": "Ivan Gemba",
"license": "ISC",
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/socket.io": "^2.1.8",
"@types/socket.io-client": "^1.4.32",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/experimental-utils": "^2.32.0",
"@typescript-eslint/parser": "^2.32.0",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.13.2",
"express": "^4.17.1",
"jest": "^26.0.1",
"json-schema": "^0.2.5",
"socket.io": "^2.3.0",
"terser-webpack-plugin": "^3.0.0",
"ts-loader": "^7.0.2",
"tslib": "^1.11.1",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"rxjs": "^6.5.5",
"socket.io-client": "^2.3.0"
},
"peerDependencies": {
"rxjs": "^6.5.5",
"socket.io-client": "^2.3.0"
}
}