-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.84 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
{
"name": "@guildxyz/queues",
"version": "0.0.9",
"description": "Redis-based distributed message queue library for Guild.xyz's backend infrastructure.",
"main": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"license": "MIT",
"scripts": {
"test": "jest",
"build": "tsc",
"prepare": "npm run build",
"prepack": "npm run build",
"clean": "rm -rf ./node_modules ./build"
},
"dependencies": {
"correlation-id": "^5.0.3",
"pg": "^8.11.5",
"redis": "^4.6.6",
"uuidv7": "^0.6.3"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@types/pg": "^8.11.5",
"@types/redis-mock": "^0.17.1",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"dotenv": "^16.0.0",
"eslint": "^8.11.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-typescript-enum": "^2.1.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.5",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"redis-mock": "^0.56.3",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"lint-staged": {
"*.{js,ts}": "eslint --fix --cache --cache-location 'node_modules/.cache/.eslintcache'",
"*.{js,ts,md}": "pretty-quick --staged"
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged"
}
},
"directories": {
"doc": "docs",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agoraxyz/guild-queues.git"
},
"author": "Devidxyz",
"bugs": {
"url": "https://github.com/agoraxyz/guild-queues/issues"
},
"homepage": "https://github.com/agoraxyz/guild-queues#readme"
}