-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 2.34 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
{
"name": "graphql-limiter",
"version": "1.3.0",
"description": "A GraphQL rate limiting library using query complexity analysis.",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"type": "module",
"scripts": {
"test": "jest --passWithNoTests --coverage --detectOpenHandles",
"lint": "eslint src test",
"lint:fix": "eslint --fix src test @types",
"prettier": "prettier --write .",
"prepare": "husky install",
"build": "tsc",
"build:fix": "node node_modules/.bin/yab dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oslabs-beta/graphql-gate.git"
},
"keywords": [
"graphql",
"graphqlgate",
"rate-limiting",
"throttling",
"query",
"express",
"complexity",
"analysis"
],
"author": "Evan McNeely, Stephan Halarewicz, Flora Yufei Wu, Jon Dewey, Milos Popovic",
"license": "ISC",
"bugs": {
"url": "https://github.com/oslabs-beta/GraphQL-Gate/issues"
},
"homepage": "https://github.com/oslabs-beta/GraphQL-Gate#readme",
"devDependencies": {
"@babel/core": "^7.17.12",
"@babel/preset-env": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@types/express": "^4.17.13",
"@types/ioredis": "^4.28.10",
"@types/ioredis-mock": "^5.6.0",
"@types/jest": "^27.5.1",
"@typescript-eslint/eslint-plugin": "^5.24.0",
"@typescript-eslint/parser": "^5.24.0",
"add-js-extension": "^1.0.4",
"babel-jest": "^28.1.0",
"eslint": "^8.15.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"ioredis-mock": "^8.2.2",
"jest": "^28.1.0",
"lint-staged": "^12.4.1",
"npm": "^8.16.0",
"prettier": "2.6.2",
"ts-jest": "^28.0.2",
"ts-node": "^10.8.0",
"typescript": "^4.6.4"
},
"lint-staged": {
"*.{js, ts}": "eslint --cache --fix",
"*.{js,ts,css,md}": "prettier --write --ignore-unknown"
},
"dependencies": {
"graphql": "^16.5.0",
"ioredis": "^5.0.5"
}
}