-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.35 KB
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
47
48
49
50
51
52
53
54
{
"name": "task-manager--api",
"version": "1.0.0",
"description": "Task manager API",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JordanLarcher/task-manager--api.git"
},
"keywords": [],
"author": "Jordan Erick Larcher",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/JordanLarcher/task-manager--api/issues"
},
"homepage": "https://github.com/JordanLarcher/task-manager--api#readme",
"dependencies": {
"bcryptjs": "^3.0.2",
"cookie-session": "^2.1.0",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"express-rate-limit": "^7.5.0",
"express-session": "^1.18.1",
"express-validator": "^7.2.1",
"helmet": "^8.1.0",
"ioredis": "^5.6.1",
"jsonwebtoken": "^9.0.2",
"mongo": "^0.1.0",
"mongodb": "^6.16.0",
"mongoose": "^8.15.1",
"morgan": "^1.10.0",
"multer": "^2.0.0",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"redis": "^5.1.1",
"socket.io": "^4.8.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"winston": "^3.17.0"
},
"directories": {
"doc": "docs"
},
"devDependencies": {
"jest": "^29.7.0",
"supertest": "^7.1.1"
}
}