-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
48 lines (48 loc) · 1.4 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": "postgraphile-plugin-connection-filter",
"version": "2.3.0",
"description": "Filtering on PostGraphile connections",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"format": "prettier --ignore-path ./.eslintignore",
"format:all": "yarn format '**/*.{json,md,html,js,jsx,ts,tsx}'",
"format:fix": "yarn format:all --write",
"format:check": "yarn format:all --list-different",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prepack": "rm -Rf dist && npm run build",
"test": "jest -i",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphile-contrib/postgraphile-plugin-connection-filter.git"
},
"author": "Matt Bretl",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphile-contrib/postgraphile-plugin-connection-filter/issues"
},
"dependencies": {
"tslib": "^2.4.1"
},
"devDependencies": {
"@graphile-contrib/pg-simplify-inflector": "6.1.0",
"@types/jest": "29.2.3",
"@typescript-eslint/eslint-plugin": "5.45.0",
"@typescript-eslint/parser": "5.45.0",
"eslint": "8.28.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jest": "27.1.6",
"graphql": "15.8.0",
"jest": "29.3.1",
"pg": "8.8.0",
"postgraphile-core": "4.12.3",
"prettier": "2.8.0",
"ts-jest": "29.0.3",
"typescript": "4.9.3"
},
"files": [
"dist"
]
}