-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.08 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
{
"name": "graphql-compose-bullmq",
"version": "0.0.0-semantically-released",
"description": "This is a plugin for `graphql-compose`, which generates GraphQLTypes for BullMQ.",
"files": [
"lib"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/graphql-compose/graphql-compose-bullmq.git"
},
"keywords": [
"graphql",
"compose",
"bull",
"bullmq",
"job",
"redis"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/graphql-compose/graphql-compose-bullmq/issues"
},
"homepage": "https://github.com/graphql-compose/graphql-compose-bullmq",
"peerDependencies": {
"bullmq": "^1.91.1",
"graphql-compose": "^7.15.0 || ^8.0.0 || ^9.0.0"
},
"devDependencies": {
"@types/express": "4.17.12",
"@types/express-graphql": "^0.9.0",
"@types/graphql": "^14.5.0",
"@types/jest": "26.0.23",
"@types/node": "15.6.1",
"@types/node-fetch": "2.5.10",
"@typescript-eslint/eslint-plugin": "4.25.0",
"@typescript-eslint/parser": "4.25.0",
"bullmq": "1.91.1",
"cpx": "^1.5.0",
"cross-env": "7.0.3",
"eslint": "7.27.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-prettier": "3.4.0",
"express": "^4.17.1",
"express-graphql": "0.12.0",
"graphql": "15.5.0",
"graphql-compose": "9.0.0",
"jest": "27.0.3",
"prettier": "2.3.0",
"rimraf": "3.0.2",
"semantic-release": "17.4.3",
"ts-jest": "27.0.1",
"ts-node": "10.0.0",
"typescript": "4.3.2"
},
"scripts": {
"build": "rimraf lib && tsc -p ./tsconfig.build.json && yarn build-lua",
"build-lua": "cpx \"src/**/*.{lua,}\" ./lib",
"watch": "jest --watch",
"coverage": "jest --coverage --maxWorkers 2",
"lint": "yarn eslint && yarn tscheck",
"eslint": "eslint --ext .ts ./src",
"tscheck": "tsc --noEmit",
"test": "cross-env NODE_ENV=test npm run coverage && npm run lint",
"semantic-release": "semantic-release"
},
"dependencies": {}
}