-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.24 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
45
46
{
"name": "social-cookbook-backend",
"version": "1.0.0",
"description": "Backend for social cookbook GT WebDev project Fall 2023",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"dev": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Social-Cookbook/social-cookbook-backend.git"
},
"author": "Ian Wood",
"license": "ISC",
"bugs": {
"url": "https://github.com/Social-Cookbook/social-cookbook-backend/issues"
},
"homepage": "https://github.com/Social-Cookbook/social-cookbook-backend#readme",
"dependencies": {
"aws-sdk": "^2.1469.0",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.2",
"mongodb": "^4.17.1",
"mongoose": "^6.12.3",
"multer": "^1.4.5-lts.1",
"multer-s3": "^2.10.0",
"nodemon": "^3.0.1"
},
"devDependencies": {
"@types/cors": "^2.8.14",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/helmet": "^4.0.0",
"@types/node": "^20.6.3",
"typescript": "^5.2.2"
}
}