forked from graphql-hive/graphql-scalars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.59 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
{
"name": "graphql-scalars",
"version": "1.13.0",
"description": "A collection of scalar types not included in base GraphQL.",
"repository": {
"type": "git",
"url": "https://github.com/Urigo/graphql-scalars.git"
},
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
},
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./*": {
"require": "./dist/*.js",
"import": "./dist/*.mjs"
}
},
"license": "MIT",
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"printWidth": 80
},
"scripts": {
"clean": "rm -rf dist",
"prebuild": "yarn clean",
"lint": "eslint --ext .ts \"./src/**/*.ts\"",
"build": "bob build --single",
"deploy:website": "cd website && yarn deploy",
"test": "jest --forceExit --no-watchman && yarn bundlesize",
"prepare-release": "yarn build && yarn test",
"release": "yarn prepare-release && bob prepack && cd dist && npm publish",
"ci:release:canary": "node bump.js && bob prepack && cd dist && npm publish --tag alpha --access public",
"bundlesize": "yarn build && cd bundle-test/ && yarn && yarn test",
"prepare": "husky install"
},
"devDependencies": {
"@babel/core": "7.16.0",
"@babel/preset-env": "7.16.0",
"@babel/preset-typescript": "7.16.0",
"@graphql-tools/merge": "8.2.1",
"@graphql-tools/schema": "8.3.1",
"@types/mongodb": "4.0.6",
"@types/node": "16.11.6",
"@types/jest": "27.0.2",
"@typescript-eslint/eslint-plugin": "5.3.0",
"@typescript-eslint/parser": "5.3.0",
"bob-the-bundler": "1.5.1",
"eslint": "8.1.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.1",
"eslint-plugin-standard": "5.0.0",
"graphql": "16.0.1",
"husky": "7.0.4",
"jest": "27.3.1",
"lint-staged": "11.2.6",
"mockdate": "3.0.5",
"mongodb": "4.1.3",
"prettier": "2.4.1",
"semver": "7.3.5",
"ts-jest": "27.0.7",
"typescript": "4.4.4"
},
"dependencies": {
"tslib": "~2.3.0"
},
"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"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"git add"
],
"*.{js,json,css,md,ts,tsx}": [
"prettier --write",
"git add -f"
]
},
"engines": {
"node": ">=10"
}
}