-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 974 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
{
"name": "chatclient",
"version": "1.0.0",
"description": "",
"scripts": {
"web": "concurrently \"npm run server\" \"cd client && npm run serve-web\" ",
"desktop": "concurrently \"npm run server\" \"cd client && npm run serve-electron\" ",
"android": "concurrently \"npm run server\" \"cd client && npm run serve-android\" ",
"ios": "concurrently \"npm run server\" \"cd client && npm run serve-ios\" ",
"server": "cd server && npm run start",
"start": "npm run web",
"install-all": "concurrently \"npm install\" \"cd client && npm install\" \"cd server && npm install\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/BlackJax96/ChatClientAWS.git"
},
"author": "David Eddy",
"license": "ISC",
"bugs": {
"url": "https://github.com/BlackJax96/ChatClientAWS/issues"
},
"homepage": "https://github.com/BlackJax96/ChatClientAWS#readme",
"devDependencies": {
"concurrently": "^4.1.0"
}
}