-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.2 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
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "sisac-api",
"version": "1.0.0",
"description": "SISAC application backend api",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "jest --watchAll --verbose",
"dev": "nodemon app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arhamsc/SISAC-Backend.git"
},
"author": "KARS",
"license": "ISC",
"bugs": {
"url": "https://github.com/arhamsc/SISAC-Backend/issues"
},
"homepage": "https://github.com/arhamsc/SISAC-Backend#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.19.1",
"cloudinary": "^1.27.1",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"firebase-admin": "^10.0.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.1.3",
"multer": "^1.4.4",
"multer-storage-cloudinary": "^4.0.0",
"passport": "^0.5.2",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^6.1.0"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"eslint": "^8.7.0",
"jest": "^27.4.7",
"supertest": "^6.2.2"
}
}