-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.42 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.42 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
{
"name": "graphile-upload-plugin",
"version": "0.3.3",
"description": "Graphile upload plugin for PostGraphile",
"author": "Constructive <developers@constructive.io>",
"homepage": "https://github.com/constructive-io/constructive",
"license": "MIT",
"main": "index.js",
"module": "esm/index.js",
"types": "index.d.ts",
"scripts": {
"clean": "makage clean",
"prepack": "pnpm run build",
"build": "makage build",
"build:dev": "makage build --dev",
"lint": "eslint . --fix",
"test": "jest",
"test:watch": "jest --watch"
},
"publishConfig": {
"access": "public",
"directory": "dist"
},
"repository": {
"type": "git",
"url": "https://github.com/constructive-io/constructive"
},
"keywords": [
"postgraphile",
"graphile",
"launchql",
"plugin",
"postgres",
"graphql",
"upload"
],
"bugs": {
"url": "https://github.com/constructive-io/constructive/issues"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.948.0",
"@pgpmjs/env": "workspace:^",
"@launchql/s3-utils": "workspace:^",
"@types/pg": "^8.16.0",
"graphile-test": "workspace:^",
"graphql-tag": "^2.12.6",
"makage": "^0.1.6",
"pgsql-test": "workspace:^",
"ts-jest": "^29.4.6"
},
"dependencies": {
"@launchql/s3-streamer": "workspace:^",
"@launchql/upload-names": "workspace:^",
"graphile-build": "^4.14.1",
"graphql": "15.10.1"
}
}