-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 793 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 793 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
{
"name": "knowledge-bytes",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev-server": "npm run dev --prefix backend",
"dev-client": "npm run dev --prefix frontend",
"dev": "concurrently \"npm run dev-server\" \"npm run dev-client\"",
"install-all": "npm install && npm install --prefix frontend && npm install --prefix backend",
"start": "cd backend && node app.js"
},
"repository": {
"type": "git",
"url": "https://github.com/aayush301/Knowledge-bytes.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/aayush301/Knowledge-bytes/issues"
},
"homepage": "https://github.com/aayush301/Knowledge-bytes#readme",
"dependencies": {
"concurrently": "^7.2.1"
}
}