-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.18 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
{
"name": "ove",
"private": true,
"license": "MIT",
"scripts": {
"install": "lerna bootstrap --hoist --no-ci",
"install:prod": "lerna bootstrap --hoist -- --production --no-optional",
"clean": "lerna run clean",
"build": "lerna run build",
"build:clean": "lerna run clean && lerna run build",
"lint": "lerna run lint",
"test": "lerna run test",
"start": "OVE_HOST='localhost:8080' TUORIS_HOST='localhost:7080' OPENVIDU_HOST='localhost:4443' pm2 start pm2.json",
"start:windows": "pm2 start pm2-windows.json",
"start:dev": "OVE_HOST='localhost:8080' TUORIS_HOST='localhost:7080' OPENVIDU_HOST='localhost:4443' lerna run start:dev"
},
"devDependencies": {
"@babel/core": "7.18.6",
"@babel/cli": "7.18.6",
"@babel/preset-env": "7.18.6",
"@babel/node": "7.18.6",
"eslint": "7.26.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.23.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-standard": "4.1.0",
"lerna": "4.0.0",
"remark": "13.0.0",
"remark-preset-lint-recommended": "5.0.0",
"rimraf": "3.0.2"
},
"dependencies": {
"ws": "7.4.6"
}
}