-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.8 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
{
"name": "nodejs-microservice-base",
"version": "0.0.1-development",
"description": "A starting point for building efficient Node.js microservices.",
"license": "MIT",
"main": "src/index.js",
"scripts": {
"debug:dev": "nodemon --exec babel-node --inspect src/index.js",
"dev": "nodemon --exec babel-node src/index.js",
"clean": "rimraf --glob dist/*",
"build": "yarn clean && babel src -d dist --copy-files",
"serve": "yarn build && node dist/index.js",
"script": "babel-node src/scripts/run.js",
"lint": "eslint . --ext .js",
"lint:fix": "eslint --fix . --ext .js",
"prettier": "prettier --check src/**/*.js",
"prettier:fix": "prettier --write src/**/*.js",
"format": "yarn prettier:fix && yarn lint:fix"
},
"repository": {
"type": "git",
"url": "https://github.com/mateeqazam/nodejs-microservice-base.git"
},
"author": {
"name": "Muhammad Ateeq Azam",
"email": "[email protected]"
},
"dependencies": {
"@bull-board/api": "^5.8.4",
"@bull-board/express": "^5.8.4",
"@bull-board/ui": "^5.8.4",
"bullmq": "^4.12.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-basic-auth": "^1.2.1",
"fast-csv": "^4.3.6",
"ioredis": "^5.3.2",
"isomorphic-fetch": "^3.0.0",
"lodash": "^4.17.21",
"mongoose": "^7.6.1",
"node-fetch": "2.6.7",
"node-schedule": "^2.1.1",
"path": "^0.12.7",
"promise-limit": "^2.7.0",
"redis": "^4.6.10"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@babel/node": "^7.22.19",
"@babel/preset-env": "^7.23.2",
"eslint": "^8.51.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.1",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"rimraf": "^5.0.5"
}
}