-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.39 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
{
"name": "peers-server",
"version": "1.0.1",
"description": "WebRTC full-mesh implementation for server side with socket.io written in Typescript",
"keywords": [
"webrtc",
"full-mesh",
"peers",
"signaling",
"typescript",
"ts",
"socket.io"
],
"license": "MIT",
"author": "n0",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"tsc": "tsc",
"build": "npm run lint && rimraf dist && webpack",
"clean": "rimraf dist",
"prepublishOnly": "npm run build",
"lint": "eslint ./src/** --fix",
"test": "jest"
},
"dependencies": {
"log4js": "^6.3.0",
"socket.io": "^2.3.0",
"uuid": "^8.0.0"
},
"devDependencies": {
"@types/uuid": "^7.0.3",
"@types/jest": "^26.0.8",
"@types/log4js": "^2.3.5",
"@types/socket.io": "^2.1.10",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.2.2",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.4",
"ts-loader": "^8.0.2",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^2.5.0"
}
}