-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.19 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": "perperik",
"version": "0.0.1",
"description": "WebRTC Signaling Server",
"main": "dist/app.js",
"scripts": {
"start": "node dist/app.js",
"build": "npm run clean & tsc",
"watch": "tsc --watch",
"clean": "rm -rf dist/*",
"lint": "eslint src/**/*.ts"
},
"repository": {
"url": "git+https://github.com/murat-dogan/perperik.git",
"type": "git"
},
"keywords": [
"perperik",
"WebRTC",
"Signalig Server"
],
"author": "Murat Doğan",
"license": "MIT",
"bugs": {
"url": "https://github.com/murat-dogan/perperik/issues"
},
"homepage": "https://github.com/murat-dogan/perperik#readme",
"devDependencies": {
"@types/node": "^16.11.12",
"@types/ws": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"typescript": "^4.5.3"
},
"dependencies": {
"bufferutil": "^4.0.5",
"dotenv": "^10.0.0",
"log4js": "^6.3.0",
"nanoid": "^3.1.30",
"rate-limiter-flexible": "^2.3.6",
"utf-8-validate": "^5.0.7",
"ws": "^8.3.0"
}
}