-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.23 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
{
"name": "ts-socket-sdk",
"version": "1.0.0",
"description": "A NodeJs and Browser SDK that allow end-users to send and receive messages through a WebSocket connection.",
"main": "index.js",
"type": "module",
"scripts": {
"clean": "rm dist/bundle.js",
"build-prod": "webpack --mode production",
"test": "jest",
"build": "tsc --build",
"dev": "nodemon js/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iphyokafor/ts-socket-sdk.git"
},
"keywords": [
"ws",
"websocket",
"socket.io"
],
"author": "iphyokafor",
"license": "ISC",
"bugs": {
"url": "https://github.com/iphyokafor/ts-socket-sdk/issues"
},
"homepage": "https://github.com/iphyokafor/ts-socket-sdk#readme",
"dependencies": {
"socket.io": "^4.5.1",
"socket.io-client": "^4.5.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^28.1.6",
"@types/uuid": "^8.3.4",
"cors": "^2.8.5",
"express": "^4.18.1",
"jest": "^28.1.3",
"nodemon": "^2.0.19",
"ts-loader": "^9.3.1",
"typescript": "latest",
"webpack": "latest",
"webpack-cli": "^4.10.0"
}
}