-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 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
{
"name": "graphile-worker-rate-limiter",
"version": "1.0.3",
"description": "A collection of rate limiters for graphile worker",
"main": "dist/index.js",
"author": "Ben Packer <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"prepack": "rm -Rf dist && tsc ",
"lint": "yarn prettier:check && eslint --ext .js,.jsx,.ts,.tsx,.graphql .",
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx,.graphql . --fix; prettier --ignore-path .eslintignore --write '**/*.{js,jsx,ts,tsx,graphql,md,json}'",
"prettier:check": "prettier --ignore-path .eslintignore --check '**/*.{js,jsx,ts,tsx,graphql,md,json}'",
"test": "jest",
"test:watch": "jest --watch",
"perfTest": "yarn prepack && node ./perfTest/run.js",
"release": "standard-version"
},
"files": [
"dist/"
],
"dependencies": {
"@types/ioredis": "^4.17.3",
"ioredis": "^4.17.3"
},
"peerDependencies": {
"graphile-worker": ">=0.6.0 <1"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/pg": "^8.6.5",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"graphile-worker": "^0.13.0",
"jest": "^29.6.2",
"pg": "^8.7.3",
"prettier": "^2.7.1",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.1",
"ts-node": "^8.10.2",
"typescript": "^5.1.6"
}
}