-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.14 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
{
"name": "webrtc-signaling-server",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"scripts": {
"dev": "yarn build && yarn watch",
"start": "cross-env BUILD_ENV=PROD node dist/server.js",
"watch": "cross-env BUILD_ENV=DEV node dist/server.js",
"lint": "eslint 'src/**'",
"postinstall": "npm run build",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArtemBaskal/webrtc-signaling-server.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ArtemBaskal/webrtc-signaling-server/issues"
},
"homepage": "https://github.com/ArtemBaskal/webrtc-signaling-server#readme",
"dependencies": {
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"google-auth-library": "^7.0.2",
"ws": "^7.4.2"
},
"devDependencies": {
"@types/node": "^14.14.32",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "^7.21.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"typescript": "^4.2.3"
}
}