-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
24 lines (24 loc) · 921 Bytes
/
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
{
"name": "admin-project",
"version": "1.0.0",
"description": "This project is a web application that allows users to vote for their preferred candidates in an election. The project uses MongoDB for database management and has three collections for candidates, elections, and users.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"frontend": "cd Client && npm run start",
"newFrontend": "cd Client && npm install && npm run start",
"backend": "cd server && nodemon main",
"newBackend": "cd server && npm install && nodemon main"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prnvbaraiya/admin-project.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/prnvbaraiya/admin-project/issues"
},
"homepage": "https://github.com/prnvbaraiya/admin-project#readme"
}