-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
31 lines (31 loc) · 929 Bytes
/
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
{
"name": "multimeet",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"npm": ">=8.0.0",
"node": ">=20.0.0"
},
"scripts": {
"install-server": "npm install --prefix server",
"install-client": "npm install --prefix client",
"install": "npm run install-server && npm run install-client",
"server": "npm run watch --prefix server",
"client": "npm run dev --prefix client",
"watch": "npm run server & npm run client",
"deploy": "npm run build --prefix client && npm start --prefix server",
"test": "npm run test --prefix client",
"lint": "npm run lint --prefix server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/silvareal/multimeet.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/silvareal/multimeet/issues"
},
"homepage": "https://github.com/silvareal/multimeet#readme"
}