-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
95 lines (95 loc) · 2.94 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
{
"name": "@entria/graphql-mongo-helpers",
"description": "Mongo helpers to be used when building a GraphQL API",
"version": "1.1.2",
"author": {
"name": "Entria",
"email": "[email protected]",
"url": "https://github.com/entria"
},
"contributors": [
{
"name": "Jonathan Cardoso Machado",
"url": "https://github.com/JCMais"
},
{
"name": "Jean Leonço",
"url": "https://github.com/jean-leonco"
}
],
"dependencies": {
"@entria/graphql-mongoose-loader": "^4.3.2"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/node": "^7.12.10",
"@babel/plugin-proposal-async-generator-functions": "^7.12.12",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-export-default-from": "^7.10.4",
"@babel/plugin-proposal-export-namespace-from": "^7.10.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/plugin-transform-async-to-generator": "^7.10.4",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@team-griffin/install-self-peers": "^1.1.1",
"@types/graphql-relay": "^0.7.0",
"@types/jest": "^27.4.0",
"@types/mongoose": "^5.10.3",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"babel-jest": "^28.0.2",
"dataloader": "*",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^4.0.0",
"graphql": ">=16.0.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"lint-staged": "^12.1.7",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"sort-package-json": "^1.48.1",
"typescript": "^4.1.3"
},
"jsnext:main": "src/index.js",
"keywords": [
"graphql",
"mongo"
],
"license": "MIT",
"main": "lib/index.js",
"module": "src/index.js",
"peerDependencies": {
"dataloader": "*",
"graphql": ">=16.0.0",
"graphql-relay": "*",
"mongoose": "*"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/entria/graphql-mongo-helpers"
},
"scripts": {
"build": "yarn clean && tsc -b",
"clean": "rimraf lib",
"lint": "eslint --fix --ext .js,.ts",
"lint:ci": "eslint --quiet --ext .js,.ts",
"prepare": "install-self-peers -- --ignore-scripts",
"prepublishOnly": "yarn lint && yarn test && yarn build",
"release:major": "npm version major && git push --follow-tags",
"release:minor": "npm version minor && git push --follow-tags",
"release:patch": "npm version patch && git push --follow-tags",
"test": "jest"
},
"typings": "lib/index.d.ts"
}