-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 744 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 744 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
{
"name": "connect_backend",
"version": "1.0.0",
"description": "",
"main": "./api/index.js",
"scripts": {
"start": "node ./api/index.js",
"dev": "nodemon -L -P 2000 --watch src --ignore src/config/serviceAccountKey.json ./api/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "echo 'No build necessary for this backend project'"
},
"author": "Huzaifa Qureshi",
"license": "ISC",
"dependencies": {
"axios": "^1.6.8",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"firebase-admin": "^12.3.0",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"redis": "^4.7.0",
"uuid4": "^2.0.3"
},
"devDependencies": {
"nodemon": "^3.1.0"
}
}