-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.32 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
47
48
49
50
51
52
53
54
{
"name": "node-awesome-server",
"version": "1.0.0",
"description": "Awesome Node Architecture written in JS vanilla for Node projects. Implements hexagonal architecture and some Design Patterns",
"main": "src/app.js",
"scripts": {
"start": "nodemon",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/soyjuanmacias/node-awesome-server.git"
},
"type": "module",
"keywords": [
"node",
"architecture",
"javascript",
"hexagonal",
"express",
"design patterns",
"clean code",
"jobs",
"js"
],
"author": "Juan Antonio Macías Pascualvaca®",
"license": "MIT",
"bugs": {
"url": "https://github.com/soyjuanmacias/node-awesome-server/issues"
},
"homepage": "https://github.com/soyjuanmacias/node-awesome-server#readme",
"devDependencies": {
"eslint": "^8.31.0",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"prettier": "^2.8.2"
},
"dependencies": {
"bcrypt": "^5.1.0",
"celebrate": "^15.0.1",
"connect-mongo": "^4.6.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"eventemitter3": "^5.0.0",
"express": "^4.18.2",
"express-session": "^1.17.3",
"helmet": "^6.0.1",
"joi": "^17.7.0",
"mongoose": "^6.8.3",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"winston": "^3.8.2"
}
}