-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.94 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
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "ca-microservices-nodejs",
"version": "1.0.0",
"description": "Hexagonal architecture codebase for building microservices applications",
"scripts": {
"build": "babel app/ -d dist",
"start": "node dist/index.js --env-file=.env",
"dev": "nodemon --exec babel-node app/index.js --env-file=.env ",
"test": "jest --verbose",
"lint": "eslint app/",
"lint-fix": "eslint app/ --fix",
"jsdoc": "jsdoc -c jsdoc.json -R README.md"
},
"repository": "https://github.com/wizeline/CA-Microservices-NodeJS.git",
"keywords": [
"microservices"
],
"author": "jose.pereira@wizeline.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/wizeline/CA-Microservices-NodeJS/issues"
},
"homepage": "https://github.com/wizeline/CA-Microservices-NodeJS#readme",
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.3",
"@babel/node": "^7.22.19",
"@babel/preset-env": "^7.23.3",
"@jest/globals": "^29.7.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.8",
"@types/node": "^20.11.12",
"docdash": "^2.0.2",
"eslint": "^8.53.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jsdoc": "^48.0.4",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"jest-sonar-reporter": "^2.0.0",
"jsdoc": "^4.0.2",
"jsdoc-to-markdown": "^8.0.0",
"jsdoc-tsimport-plugin": "^1.0.5",
"nodemon": "^3.0.1",
"prettier": "^3.1.0",
"supertest": "^6.3.3"
},
"dependencies": {
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"db-migrate": "^0.11.14",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.1",
"pg": "^8.11.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"uuid": "^9.0.1",
"winston": "^3.11.0"
},
"engines": {
"node": ">=21.0.0"
}
}