-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
44
{
"name": "chai-backend",
"version": "1.0.0",
"description": "A Backend at chai aur code video series - youtube ",
"type": "module",
"main": "src/index.js",
"scripts": {
"dev": "nodemon src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaushal-krishna/chai-backend.git"
},
"keywords": [
"javascript",
"backend",
"chai"
],
"author": "Kaushal Krishna",
"license": "ISC",
"bugs": {
"url": "https://github.com/kaushal-krishna/chai-backend/issues"
},
"homepage": "https://github.com/kaushal-krishna/chai-backend#readme",
"devDependencies": {
"@types/express": "^5.0.0",
"@types/multer": "^1.4.12",
"nodemon": "^3.1.7",
"prettier": "^3.3.3"
},
"dependencies": {
"bcrypt": "^5.1.1",
"cloudinary": "^2.5.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"fs": "^0.0.1-security",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.7.0",
"mongoose-aggregate-paginate-v2": "^1.1.2",
"multer": "^1.4.5-lts.1"
}
}