-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.21 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": "studybuddy",
"version": "1.0.0",
"description": "`StudyBuddy` is a web based tool to help students to better manage their schedule. With `StudyBuddy`, students can add their courses and track their assignments, quizes, midterms and final exam deadlines. Additionally, Users can schedule their own personal routine to create better study habits. Overall, students will be able to track their progress throughout their desired time period, and track if they are progressing towards their individual goals.",
"main": "index.js",
"scripts": {
"test": "cd Server && npm test",
"client": "cd client && npm start",
"backend": "cd Server && nodemon",
"dev": "concurrently \"npm run backend\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/prosaox/StudyBuddy.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/prosaox/StudyBuddy/issues"
},
"homepage": "https://github.com/prosaox/StudyBuddy#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"express": "^4.17.3",
"express-validator": "^6.14.0",
"jest": "^27.5.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.2.5",
"supertest": "^6.2.2"
}
}