This repository has been archived by the owner on Dec 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.5 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
{
"name": "example-typescript-webrtc",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "concurrently --kill-others \"npm:start:server\" \"npm:watch:client\"",
"start:server": "kill-port -s 5000 && ts-node -r dotenv/config server/index.ts",
"watch": "npm install && concurrently --kill-others \"npm:watch:server\" \"npm:watch:client\"",
"watch:server": "kill-port -s 5050 && nodemon -r dotenv/config --delay 1 --watch server --ext ts --exec ts-node server/index.ts",
"watch:client": "kill-port -s 8080 && webpack serve --no-stats",
"build:client": "webpack",
"build:client:prod": "webpack --env production",
"build:server": "tsc --project tsconfig.json",
"format": "prettier --write client/ server/",
"lint": "eslint client/ server/",
"lint:fix": "eslint --fix client/ server/"
},
"author": "Rivet Gaming, LLC",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"concurrently": "^7.4.0",
"dotenv": "^16.0.2",
"eslint": "^8.23.1",
"html-webpack-plugin": "^5.5.0",
"kill-port": "^2.0.1",
"node-gyp": "^9.1.0",
"prettier": "^2.7.1",
"simple-statistics": "^7.8.3",
"socket.io-client": "^4.5.2",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.3",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.0"
},
"dependencies": {
"@rivet-gg/api": "^24.1.1-rc.1",
"@roamhq/wrtc": "^0.7.1",
"sdp-transform": "^2.14.1",
"socket.io": "^4.5.2"
}
}