-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
39 lines (39 loc) · 1.32 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
{
"name": "jitsi-box-pro",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/eric-nguyen-cs/jitsi-box-pro.git",
"author": "ParisDigitalLab",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"concurrently": "^7.4.0",
"eslint": "^8.17.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"prettier": "2.6.2"
},
"workspaces": [
"packages/model",
"packages/ui",
"apps/main-screen"
],
"scripts": {
"install-packages": "concurrently \"cd apps/main-screen && npm i\" \"cd apps/controller && npm i\" \"cd services/bridge && npm i\"",
"clean": "tsc --build --clean",
"build": "tsc --build",
"watch": "tsc --build --watch",
"main-screen": "cd apps/main-screen && npm run dev",
"controller": "cd apps/controller && npm run dev",
"bridge": "cd services/bridge && npm run start",
"dev": "concurrently --kill-others \"cd apps/main-screen && npm run dev\" \"cd apps/controller && npm run dev\" \"cd services/bridge && npm run start\" "
},
"dependencies": {
"socket.io": "^4.5.1"
}
}