-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (76 loc) · 2.39 KB
/
package.json
File metadata and controls
77 lines (76 loc) · 2.39 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
{
"name": "@vostro/gqlize",
"version": "5.3.5",
"description": "A relational databinder for generating graphql schemas to connect and work with multi data sources",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"postpublish": "yalc restore --all && pnpm install",
"express": "node -r \"@babel/register\" ./__tests__/helper/express.js",
"print-schema": "node -r \"@babel/register\" ./__tests__/helper/print.js",
"prepublishOnly": "pnpm run build; echo next; yalc retreat --all",
"watch": "tsc --watch",
"test": "jest",
"build": "rm -Rf ./lib || true; run-p build:*",
"build:main": "swc src --out-dir lib --strip-leading-paths -s",
"build:types": "tsc -p tsconfig.types.json",
"build:copy-dts": "copyfiles -u 1 \"src/**/*.d.ts\" lib"
},
"author": "VostroNet",
"license": "GPL-3.0",
"homepage": "https://github.com/VostroNet/gqlize",
"bugs": {
"url": "https://github.com/VostroNet/gqlize/issues"
},
"resolutions": {
"graphql": "npm:@vostro/graphql16"
},
"devDependencies": {
"@graphql-yoga/node": "^3.9.1",
"@swc/cli": "^0.4.0",
"@swc/core": "^1.7.14",
"@tsconfig/node20": "^20.1.4",
"@tsconfig/recommended": "^1.0.7",
"@types/debug": "^4.1.12",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.0",
"@types/pluralize": "^0.0.33",
"@types/uuid": "^10.0.0",
"@vostro/gqlize-adapter-sequelize": "^5.3.0",
"@vostro/graphql-types": "^2.0.0",
"body-parser": "^1.20.2",
"copyfiles": "^2.4.1",
"deep-freeze": "0.0.1",
"del": "^7.1.0",
"expect": "^29.7.0",
"express": "^4.19.2",
"graphql": "npm:@vostro/graphql16",
"graphql-relay": "^0.10.2",
"graphql-subscriptions": "^2.0.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"node-notifier": "^10.0.1",
"npm-run-all2": "^6.2.2",
"sequelize": "^6.37.3",
"source-map-support": "^0.5.21",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"uuid": "^10.0.0"
},
"peerDependencies": {
"@vostro/graphql-types": "^2.0.0",
"graphql": "npm:@vostro/graphql16",
"graphql-relay": "^0.10.0",
"sequelize": "^6.35.1"
},
"dependencies": {
"@vostro/graphql16": "npm:@vostro/graphql16",
"@vostro/object-visit": "^1.1.0",
"deepmerge": "^4.3.1",
"pluralize": "^8.0.0"
}
}