-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 803 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 803 Bytes
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
{
"author": "dodortus",
"name": "simple-chat",
"version": "1.0.1",
"description": "Simple Web chat app",
"repository": "https://github.com/dodortus/simple-chat.git",
"keywords": [
"react",
"chat",
"socketio"
],
"license": "MIT",
"engine": {
"node": "^10.16.*"
},
"dependencies": {
"concurrently": "^5.0.1"
},
"scripts": {
"install": "concurrently \"cd backend && npm install\" \"cd frontend && npm install\"",
"start": "concurrently \"npm run start:backend\" \"npm run start:frontend\"",
"test": "concurrently \"npm run start:backend\" \"npm run start:frontend\" \"npm run start:test\"",
"start:backend": "cd backend && npm start",
"start:frontend": "cd frontend && npm start",
"start:test": "cd frontend && npm run test:open"
}
}