-
Notifications
You must be signed in to change notification settings - Fork 133
/
package.json
108 lines (108 loc) · 3.24 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
{
"name": "graphql-scalars",
"version": "1.23.0",
"type": "module",
"description": "A collection of scalar types not included in base GraphQL.",
"repository": {
"type": "git",
"url": "https://github.com/Urigo/graphql-scalars.git"
},
"license": "MIT",
"engines": {
"node": ">=10"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"exports": {
".": {
"require": {
"types": "./dist/typings/index.d.cts",
"default": "./dist/cjs/index.js"
},
"import": {
"types": "./dist/typings/index.d.ts",
"default": "./dist/esm/index.js"
},
"default": {
"types": "./dist/typings/index.d.ts",
"default": "./dist/esm/index.js"
}
},
"./package.json": "./package.json"
},
"typings": "dist/typings/index.d.ts",
"scripts": {
"build": "bob build --single",
"bundlesize": "yarn build && cd bundle-test/ && yarn && yarn test",
"ci:lint": "cross-env \"ESLINT_USE_FLAT_CONFIG=false\" eslint --ext .ts \"./src/**/*.ts\" --output-file eslint_report.json --format json",
"clean": "rm -rf dist",
"deploy:website": "cd website && yarn deploy",
"lint": "cross-env \"ESLINT_USE_FLAT_CONFIG=false\" eslint --ext .ts \"./src/**/*.ts\"",
"lint:prettier": "prettier --ignore-path .gitignore --ignore-path .prettierignore --cache --check .",
"prebuild": "yarn clean",
"prepare": "husky install",
"prerelease": "yarn build && bob prepack",
"prettier": "yarn lint:prettier --write",
"release": "changeset publish",
"test": "jest --forceExit --no-watchman && yarn bundlesize"
},
"peerDependencies": {
"graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
},
"dependencies": {
"tslib": "^2.5.0"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/preset-typescript": "7.26.0",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.9",
"@graphql-tools/merge": "9.0.8",
"@graphql-tools/schema": "10.0.7",
"@theguild/prettier-config": "2.0.7",
"@types/jest": "29.5.14",
"@types/mongodb": "4.0.7",
"@types/node": "22.9.0",
"@typescript-eslint/eslint-plugin": "8.13.0",
"@typescript-eslint/parser": "8.13.0",
"bob-the-bundler": "7.0.1",
"cross-env": "7.0.3",
"eslint": "9.14.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "17.13.1",
"eslint-plugin-promise": "7.1.0",
"eslint-plugin-standard": "5.0.0",
"graphql": "16.9.0",
"husky": "9.1.6",
"jest": "29.7.0",
"json-bigint-patch": "0.0.8",
"lint-staged": "15.2.10",
"mockdate": "3.0.5",
"mongodb": "6.10.0",
"prettier": "3.3.3",
"semver": "7.6.3",
"ts-jest": "29.2.5",
"typescript": "5.6.3"
},
"publishConfig": {
"directory": "dist",
"access": "public"
},
"sideEffects": false,
"lint-staged": {
"*.{ts,tsx}": [
"cross-env \"ESLINT_USE_FLAT_CONFIG=false\" eslint --fix",
"git add"
],
"*.{js,json,css,md,ts,tsx}": [
"prettier --write",
"git add -f"
]
},
"typescript": {
"definition": "dist/typings/index.d.ts"
}
}