forked from graphile/crystal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.31 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@dataplan/pg",
"version": "0.0.1-beta.22",
"description": "PostgreSQL step classes for Grafast",
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"node": "./dist/index.js",
"default": "./dist/index.js"
},
"./adaptors/pg": {
"types": "./dist/adaptors/pg.d.ts",
"node": "./dist/adaptors/pg.js",
"default": "./dist/adaptors/pg.js"
}
},
"scripts": {
"update-schema": "ts-node ./__tests__/exampleSchema.ts",
"test:install-schema": "psql -X1v ON_ERROR_STOP=1 -f __tests__/schema.sql -f __tests__/sequence_reset.sql \"${TEST_DATABASE_URL:-graphile_crystal}\"",
"test": "GRAPHILE_ENV=test yarn test:install-schema && jest -i",
"posttest": "yarn test:exportSchema:graphql-js && yarn test:exportSchema:typeDefs",
"test:exportSchema:graphql-js": "ts-node ./scripts/exportExampleSchema.ts graphql-js && node ./scripts/runExampleSchema.mjs",
"test:exportSchema:typeDefs": "ts-node ./scripts/exportExampleSchema.ts typeDefs && node ./scripts/runExampleSchema.mjs",
"prepack": "tsc -b && cp src/.npmignore dist/.npmignore",
"serve:example": "GRAPHILE_ENV=development NODE_ENV=development yarn nodemon --watch serve-example-schema.js --watch dist --watch ../grafast/dist/ -x 'node --inspect --enable-source-maps serve-example-schema.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphile/crystal.git"
},
"keywords": [
"graphile",
"graphql",
"grafast",
"postgresql",
"postgres",
"pg",
"dataplan",
"build",
"extension",
"graphite"
],
"author": "Benjie Gillam <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphile/crystal/issues"
},
"homepage": "https://grafast.org/grafast/step-library/dataplan-pg/",
"dependencies": {
"@graphile/lru": "workspace:^",
"@types/node": "^20.5.7",
"chalk": "^4.1.2",
"debug": "^4.3.4",
"eventemitter3": "^5.0.1",
"pg-sql2": "workspace:^",
"postgres-array": "~3.0.2",
"postgres-range": "^1.1.3",
"tslib": "^2.6.2"
},
"engines": {
"node": ">=14.17"
},
"peerDependencies": {
"@dataplan/json": "workspace:^",
"grafast": "workspace:^",
"graphile-config": "workspace:^",
"pg": "^8.7.1",
"pg-sql2": "workspace:^"
},
"peerDependenciesMeta": {
"graphile-config": {
"optional": true
},
"pg": {
"optional": true
}
},
"files": [
"dist"
],
"devDependencies": {
"@mermaid-js/mermaid-cli": "^9.0.0",
"@types/jest": "^29.5.4",
"@types/json5": "^2.2.0",
"@types/license-checker-webpack-plugin": "^0.2.2",
"@types/nodemon": "1.19.2",
"eventemitter3": "^5.0.1",
"glob": "^10.3.4",
"grafserv": "workspace:*",
"graphile-export": "workspace:*",
"graphql": "16.1.0-experimental-stream-defer.6",
"iterall": "^1.3.0",
"jest": "^29.6.4",
"jest-serializer-simple": "workspace:^",
"json5": "^2.2.3",
"license-checker-webpack-plugin": "^0.2.1",
"nodemon": "^3.0.1",
"terser-webpack-plugin": "^5.3.9",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0",
"zx": "^7.2.3"
}
}