-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 2.78 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 2.78 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
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
111
112
113
114
{
"name": "@4c/graphql-node-resource",
"version": "6.0.0-beta.2",
"type": "module",
"packageManager": "yarn@4.17.1",
"main": "lib/index.js",
"files": [
"lib/**",
"CHANGELOG.md",
"LICENSE"
],
"exports": {
".": "./lib/index.js",
"./*": "./lib/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/4Catalyzer/graphql-node-resource.git"
},
"author": {
"name": "4Catalyzer"
},
"license": "MIT",
"scripts": {
"build": "tsc",
"prepublishOnly": "yarn run build",
"tdd": "yarn testonly --watch",
"test": "yarn lint && yarn typecheck && yarn testonly",
"testonly": "NODE_OPTIONS='--experimental-vm-modules' jest",
"lint": "4c lint src './*'",
"format": "4c format src './*'",
"release": "4c release",
"typecheck": "tsc --noEmit && tsc -p test --noEmit"
},
"publishConfig": {
"access": "public"
},
"prettier": "@4c/prettier-config",
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*": "yarn 4c lint --fix"
},
"jest": {
"testEnvironment": "node",
"extensionsToTreatAsEsm": [
".ts"
],
"transform": {
"^.+\\.ts$": [
"ts-jest",
{
"useESM": true
}
]
},
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"setupFilesAfterEnv": [
"<rootDir>/test/setup.ts"
]
},
"release": {
"conventionalCommits": true
},
"dependencies": {
"@types/lodash": "^4.17.21",
"@types/node": "^25.0.3",
"@types/pluralize": "^0.0.33",
"dataloader": "^2.2.3",
"express": "^5.2.1",
"form-data": "^4.0.5",
"lodash": "^4.17.23",
"pluralize": "^8.0.0",
"utility-types": "^3.11.0"
},
"peerDependencies": {
"graphql": ">=14.0.0",
"graphql-relay": ">=0.7.0"
},
"devDependencies": {
"@4c/cli": "^4.0.4",
"@4c/prettier-config": "^1.1.0",
"@4c/tsconfig": "^0.4.1",
"@fetch-mock/jest": "^0.2.20",
"@jest/globals": "^30.4.1",
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.63.0",
"@typescript-eslint/parser": "^8.63.0",
"eslint-config-4catalyzer": "^1.5.0",
"eslint-config-4catalyzer-jest": "^2.3.0",
"eslint-config-4catalyzer-typescript": "^3.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.15.4",
"graphql": "^16.14.2",
"graphql-relay": "^0.10.2",
"hookem": "^3.0.4",
"jest": "^30.4.2",
"lint-staged": "^16.4.0",
"ts-jest": "^29.4.11",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=v20.0.0"
},
"bugs": {
"url": "https://github.com/4Catalyzer/graphql-node-resource/issues"
},
"readme": "ERROR: No README data found!",
"homepage": "https://github.com/4Catalyzer/graphql-node-resource#readme"
}