-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 968 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 968 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
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "study-buddy-backend",
"version": "1.0.0",
"description": "Backend API for Study Buddy mobile app — handles users, study sessions, matching, and chat using Firebase",
"main": "src/server.js",
"type": "module",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"lint": "eslint . --ext .js",
"test": "jest --coverage",
"seed": "node scripts/seed.js"
},
"keywords": [
"study-buddy",
"backend",
"firebase",
"express",
"react-native"
],
"author": "Your Name",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"express": "^4.21.2",
"firebase-admin": "^11.10.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"body-parser": "^1.20.2",
"morgan": "^1.10.0"
},
"devDependencies": {
"jest": "^29.6.1",
"supertest": "^6.3.3",
"nodemon": "^3.0.2",
"eslint": "^8.47.0"
}
}