-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 739 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 739 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
{
"name": "studynotion",
"version": "1.0.0",
"private": true,
"description": "Full-stack MERN project with concurrently running client and server",
"scripts": {
"client": "npm start --prefix client",
"server": "npm run dev --prefix server",
"dev": "concurrently -n \"CLIENT,SERVER\" -c \"cyan,magenta\" \"npm run client\" \"npm run server\""
},
"devDependencies": {
"concurrently": "^9.1.2"
},
"repository": {
"type": "git",
"url": "https://github.com/Arjun20X/StudyNotion.git"
},
"bugs": {
"url": "https://github.com/Arjun20X/StudyNotion/issues"
},
"homepage": "https://github.com/Arjun20X/StudyNotion#readme",
"keywords": [],
"author": "Arjun Pratap Singh",
"license": "ISC"
}