-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
31 lines (31 loc) · 1 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
{
"name": "jitsi-keycloak",
"version": "1.0.0",
"description": "Jitsi login with keycloak",
"scripts": {
"start": "npm run dev",
"dev": "npm-run-all --parallel dev:client dev:server",
"dev:client": "npm --prefix client run serve",
"dev:server": "npm --prefix server run dev",
"build": "npm-run-all build:client copy",
"build:client": "npm --prefix client run build",
"copy": "cpy --parents --cwd=client/dist ./ ../../server/public",
"install": "npm-run-all install:client install:server",
"install:client": "npm --prefix client install",
"install:server": "npm --prefix server install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/D3473R/jitsi-keycloak.git"
},
"author": "Fabian <d3473r@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/D3473R/jitsi-keycloak/issues"
},
"homepage": "https://github.com/D3473R/jitsi-keycloak#readme",
"devDependencies": {
"cpy-cli": "^4.2.0",
"npm-run-all": "^4.1.5"
}
}