-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.08 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.08 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
{
"name": "graphql-transform-scalars",
"version": "2.2.0",
"description": "Graphql response transformer for custom scalars",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "yarn clean && yarn compile",
"clean": "rimraf ./dist",
"compile": "tsc -p tsconfig.build.json",
"graphql:test:generate": "graphql-codegen --config test/codegen.yml",
"test": "jest",
"tsc:check": "tsc --noEmit",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier **/*.{ts,json} --check",
"format:fix": "prettier **/*.{ts,json} --write"
},
"repository": {
"type": "git",
"url": "https://github.com/gastromatic/graphql-transform-scalars.git"
},
"keywords": [
"javascript",
"typescript",
"graphql",
"scalars",
"customer scalars",
"graphql-transform-scalars"
],
"author": "Patrick Klein",
"license": "MIT",
"bugs": {
"url": "https://github.com/gastromatic/graphql-transform-scalars/issues"
},
"homepage": "https://github.com/gastromatic/graphql-transform-scalars#readme",
"peerDependencies": {
"graphql": ">=15"
},
"devDependencies": {
"@commitlint/cli": "20.5.2",
"@commitlint/config-conventional": "20.5.0",
"@graphql-codegen/add": "6.0.1",
"@graphql-codegen/cli": "6.3.1",
"@graphql-codegen/typescript": "5.0.10",
"@graphql-codegen/typescript-graphql-request": "6.4.0",
"@graphql-codegen/typescript-operations": "5.1.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/jest": "30.0.0",
"@typescript-eslint/eslint-plugin": "8.59.1",
"@typescript-eslint/parser": "8.59.1",
"calendar-date": "2.11.0",
"eslint": "8.57.1",
"fast-check": "4.7.0",
"graphql": "16.13.2",
"graphql-request": "6.1.0",
"jest": "30.3.0",
"prettier": "3.8.3",
"rimraf": "6.1.3",
"ts-jest": "29.4.9",
"ts-node": "10.9.2",
"typescript": "5.9.3"
},
"jest": {
"preset": "ts-jest",
"moduleNameMapper": {
"graphql-transform-scalars": "<rootDir>/src"
}
}
}