-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
31 lines (31 loc) · 1.33 KB
/
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
28
29
30
31
{
"name": "GameOfSource-GFG",
"version": "1.0.0",
"description": "Welcome to GameofSource Web Development Arena. <h3>About Event</h3> Game of Source is a Open-Source Contribution event being organized by GeeksForGeeks and its student chapters across PAN India. The event is going to witness the participation from students of over 100+ colleges in various cities and will provide a plethora of opportunities to budding developers to directly learn from the domain experts and try their hands on practical execution of events in this celebration of learning.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"build": "npm run build --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/GameofSource-GFG/Web-Development.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/GameofSource-GFG/Web-Development/issues"
},
"homepage": "https://github.com/GameofSource-GFG/Web-Development#readme",
"dependencies": {
"body-parser": "^1.19.0",
"concurrently": "^5.3.0",
"express": "^4.17.1",
"nodemon": "^2.0.5"
}
}