-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.85 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "secret-party-online-3d-videochat",
"version": "0.0.1",
"description": "Virtual socials like they should be",
"main": "index.ts",
"dependencies": {
"@babylonjs/core": "^4.2.0",
"@babylonjs/gui": "^4.2.0",
"@babylonjs/inspector": "^4.2.0",
"@babylonjs/loaders": "^4.2.0",
"@babylonjs/materials": "^4.2.0",
"cuid": "^2.1.8",
"debug": "^4.3.1",
"inherits": "^2.0.4",
"mediasoup-client": "^3.6.30",
"once": "^1.4.0",
"protoo-client": "^4.0.6",
"signalhub": "^4.9.0",
"simple-peer": "^9.11.0",
"through2": "^4.0.2",
"webrtc-swarm": "^2.9.0"
},
"devDependencies": {
"@playwright/test": "^1.27.1",
"@types/debug": "^4.1.5",
"@types/inherits": "0.0.30",
"@types/jest": "^26.0.23",
"@types/once": "^1.4.0",
"@types/protoo-client": "^4.0.0",
"@types/simple-peer": "^9.6.3",
"@types/through2": "^2.0.36",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"clean-webpack-plugin": "^3.0.0",
"dotenv-webpack": "^7.0.2",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"source-map-loader": "^1.1.3",
"ts-jest": "^26.5.6",
"ts-loader": "^6.2.2",
"typescript": "^4.2.4",
"url-loader": "^4.1.1",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^4.2.2",
"wrtc": "^0.4.7"
},
"scripts": {
"bundle:pre": "npm ci",
"bundle": "npx webpack --config webpack.prod.js",
"lint": "npx eslint . --ext .ts,.tsx",
"lint:fix": "npx eslint . --ext .ts,.tsx --fix",
"local:start": "npx webpack-dev-server --config webpack.dev.js",
"local:pre": "npm run bundle:pre && npm run lint && npm run local:start",
"server:pre": "npm --prefix server ci",
"server:start": "npm --prefix server start",
"build": "npm run bundle:pre && npm run lint && npm run bundle && npm run server:pre",
"start": "npm run server:start",
"build:start": "npm run build && npm start",
"test": "jest",
"test:e2e": "playwright test",
"type:check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erikologic/secret-party-online-3d-videochat.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/erikologic/secret-party-online-3d-videochat/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run type:check"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
]
},
"homepage": "https://github.com/erikologic/secret-party-online-3d-videochat#readme"
}