-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 779 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 779 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
{
"name": "livesyntax",
"version": "1.0.0",
"description": "A Code Editor that allows multiple users to edit the same code in real-time.",
"main": "index.js",
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "cd server && npm run dev",
"client": "cd client && npm run dev",
"install:all": "cd server && npm install && cd ../client && npm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sohamdata/LiveSyntax.git"
},
"keywords": [],
"author": "Soham Datta",
"license": "ISC",
"bugs": {
"url": "https://github.com/sohamdata/LiveSyntax/issues"
},
"homepage": "https://github.com/sohamdata/LiveSyntax#readme",
"devDependencies": {
"concurrently": "^8.2.0"
}
}