-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.16 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.16 KB
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
{
"name": "app-pling",
"version": "0.0.1",
"description": "Meeting web app",
"scripts": {
"dev-back": "cd backend && npm run dev",
"dev-client": "cd client && ng serve --open",
"dev": "concurrently \"npm run dev-back\" \"npm run dev-client\"",
"build-back": "cd backend && npm run build",
"build-client": "cd client && npm run build",
"install-back": "cd backend && npm install",
"install-client": "cd client && npm install",
"start": "cd backend && npm start",
"build": "concurrently \"npm run build-back\" \"npm run build-client\"",
"postinstall": "concurrently \"npm run install-back\" \"npm run install-client\""
},
"engines": {
"node": "^12.16.0",
"npm": "^6.14.0"
},
"devDependencies": {
"concurrently": "^5.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Banegasn/pling"
},
"keywords": [
"video",
"angular",
"socket.io",
"nodejs",
"express",
"meeting",
"call",
"rtc"
],
"author": "banegasn",
"license": "ISC",
"bugs": {
"url": "https://github.com/Banegasn/pling/issues"
},
"homepage": "https://github.com/Banegasn/pling#readme"
}