-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
81 lines (81 loc) · 2.09 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "budget-management-system",
"displayName": "Budget Management System - Backend API",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "nodemon index.js",
"dev": "nodemon index.js",
"api": "nodemon index.js",
"cli": "node cli.js",
"frontend": "cd frontend && npm start",
"backend": "nodemon index.js",
"install-deps": "npm install",
"test": "jest --runInBand --detectOpenHandles --forceExit",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage",
"format": "prettier --config .prettierrc --write \"**/*.{js,ts,json}\""
},
"keywords": [
"mongo",
"redis",
"flow",
"project",
"amqplib",
"axios",
"http-proxy",
"postgresql",
"elasticsearch",
"elk-stack",
"express",
"mongoose"
],
"author": "Son Nguyen",
"license": "MIT",
"description": "Budget Management System - Backend API, with a Frontend to demonstrate the API",
"repository": {
"type": "git",
"url": "git+https://github.com/hoangsonww/Budget-Management-Backend-API.git"
},
"bugs": {
"url": "https://github.com/hoangsonww/Budget-Management-Backend-API/issues"
},
"dependencies": {
"@faker-js/faker": "^9.3.0",
"@grpc/grpc-js": "^1.12.5",
"@grpc/proto-loader": "^0.7.13",
"amqplib": "^0.10.4",
"axios": "^1.7.2",
"bcrypt": "^5.1.1",
"commander": "^12.1.0",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"elasticsearch": "^16.7.3",
"express": "^4.19.2",
"express-graphql": "^0.12.0",
"http-proxy": "^1.18.1",
"jsonwebtoken": "^9.0.2",
"kafkajs": "^2.2.4",
"mongodb": "^6.9.0",
"mongoose": "^8.4.1",
"morgan": "^1.10.0",
"node-fetch": "^3.3.2",
"pg": "^8.13.1",
"prettier": "^3.3.3",
"redis": "^4.6.14",
"sequelize": "^6.37.5",
"sequelize-cli": "^6.6.2",
"serve-favicon": "^2.5.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"ws": "^8.18.0"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"supertest": "^7.0.0"
},
"bin": {
"budget-manager": "./cli.js"
}
}