-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.54 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
{
"name": "bull-queue",
"version": "1.0.0",
"main": "server.js",
"scripts": {
"build": "rimraf ./dist && tsc",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"prepare": "husky install",
"precommit": "lint-staged && npm run lint:fix",
"prepush": "npm run lint",
"start": "yarn build && node dist/server.js",
"start:dev": "npx nodemon",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test": "jest --runInBand --detectOpenHandles"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npx prettier --write",
"npx eslint --fix"
]
},
"license": "MIT",
"dependencies": {
"@bull-board/api": "^5.9.1",
"@bull-board/express": "^5.9.1",
"@bull-board/ui": "^5.9.1",
"axios": "^1.6.0",
"bull": "^4.11.4",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"nodemailer": "^6.9.7"
},
"devDependencies": {
"@types/express": "^4.17.20",
"@types/jest": "^29.5.7",
"@types/node": "^20.8.9",
"@types/nodemailer": "^6.4.13",
"@types/redis-info": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^13.1.2",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}