-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.82 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.82 KB
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
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@graphile/pg-aggregates",
"version": "0.2.0-rc.2",
"description": "Aggregates support for PostGraphile",
"main": "dist/index.js",
"scripts": {
"clean": "rm -Rf dist",
"build": "tsc -p tsconfig.build.json",
"watch": "tsc -p tsconfig.build.json --watch",
"test": "yarn build && psql -X1v ON_ERROR_STOP=1 -f __tests__/schema.sql \"${TEST_DATABASE_URL:-graphile_aggregates_test}\" && jest -i",
"lint:fix": "yarn run eslint --fix . && yarn prettier:fix",
"prettier": "prettier --cache --ignore-path ./.eslintignore",
"prettier:all": "yarn prettier '**/*.{json,md,mdx,html,js,jsx,ts,tsx,yml}'",
"prettier:fix": "yarn prettier:all --write",
"prettier:check": "yarn prettier:all --list-different",
"dev": "psql -X1v ON_ERROR_STOP=1 -f __tests__/schema.sql graphile_aggregates && GRAPHILE_ENV=development concurrently --kill-others 'yarn run watch' 'yarn nodemon --watch dist -x postgraphile'",
"prepack": "rm -Rf dist && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphile/pg-aggregates.git"
},
"keywords": [
"postgraphile",
"graphile",
"plugin",
"aggregates",
"pg",
"postgres",
"postgresql",
"graphql"
],
"author": "Benjie Gillam <code@benjiegillam.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphile/pg-aggregates/issues"
},
"homepage": "https://github.com/graphile/pg-aggregates#readme",
"peerDependencies": {
"graphql": "^16.1.0-experimental-stream-defer.6",
"postgraphile": "^5.0.0"
},
"peerDependenciesMeta": {
"postgraphile": {
"optional": true
}
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/plugin-transform-modules-commonjs": "^7.27.1",
"@babel/preset-env": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@graphql-eslint/eslint-plugin": "^4.4.0",
"@localrepo/prettier2-for-jest": "npm:prettier@^2",
"@tsconfig/node20": "^20.1.4",
"@types/node": "^18.15.11",
"@typescript-eslint/parser": "^8.36.0",
"babel-jest": "^30.2.0",
"babel-plugin-transform-import-meta": "^2.3.3",
"concurrently": "^5.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-graphile-export": "^1.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.14.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-tsdoc": "^0.3.0",
"graphql": "^16.9.0",
"jest": "^29.6.4",
"jest-serializer-graphql-schema": "^5.0.0",
"jest-serializer-simple": "^5.0.0",
"nodemon": "^2.0.22",
"pg": "^8.5.1",
"postgraphile": "^5.0.0",
"postgraphile-plugin-connection-filter": "^3.0.0",
"prettier": "^2.8.7",
"typescript": "^5.0.4",
"typescript-eslint": "^8.36.0"
},
"files": [
"dist"
],
"packageManager": "yarn@4.14.1"
}