-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
106 lines (106 loc) · 3.29 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
{
"name": "@entria/graphql-mongoose-loader",
"description": "GraphQL Mongoose Loader helpers",
"version": "4.4.0",
"author": {
"name": "Entria",
"email": "dev@entria.com.br",
"url": "https://github.com/entria"
},
"devDependencies": {
"@babel/cli": "7.17.6",
"@babel/core": "7.17.9",
"@babel/node": "7.16.8",
"@babel/plugin-proposal-class-properties": "7.16.7",
"@babel/plugin-proposal-export-default-from": "7.16.7",
"@babel/plugin-proposal-export-namespace-from": "7.16.7",
"@babel/plugin-proposal-object-rest-spread": "7.17.3",
"@babel/plugin-syntax-async-generators": "7.8.4",
"@babel/plugin-transform-async-to-generator": "7.16.8",
"@babel/preset-env": "7.16.11",
"@babel/preset-flow": "7.16.7",
"@babel/preset-typescript": "7.16.7",
"@commitlint/cli": "16.2.3",
"@commitlint/config-conventional": "16.2.1",
"@types/graphql-relay": "0.7.0",
"@types/jest": "27.4.1",
"@types/mongoose": "^5.11.97",
"babel-eslint": "10.1.0",
"babel-jest": "28.0.2",
"babel-plugin-jest-hoist": "28.0.2",
"dataloader": "2.0.0",
"eslint": "8.14.0",
"eslint-import-resolver-typescript": "2.7.1",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-typescript": "0.14.0",
"graphql": "16.4.0",
"graphql-relay": "0.10.0",
"jest": "28.0.2",
"jest-cli": "28.0.2",
"lint-staged": "12.4.1",
"mongodb": "^4.3.0",
"mongodb-memory-server": "8.5.1",
"mongoose": "6.3.1",
"prettier": "2.6.2",
"tslint": "6.1.3",
"typescript": "4.6.3"
},
"homepage": "https://github.com/entria/graphql-mongoose-loader",
"jsnext:main": "src/index.js",
"keywords": [
"graphql",
"loader",
"mongoose"
],
"license": "MIT",
"lint-staged": {
"*.js": [
"prettier --write --single-quote true --trailing-comma all --print-width 100",
"eslint --fix",
"git add"
],
"*.ts": [
"yarn prettier",
"tslint --fix",
"git add"
]
},
"main": "lib/index.js",
"module": "src/index.js",
"peerDependencies": {
"graphql": "*",
"graphql-relay": "*",
"mongoose": "*"
},
"pre-commit": "lint:staged",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/entria/graphql-mongoose-loader"
},
"resolutions": {
"mongodb": "^4.3.0"
},
"scripts": {
"build": "npm run build:babel && npm run build:ts",
"build:babel": "rm -rf lib/* && babel src --extensions \".es6,.js,.es,.mjs,.ts\" --ignore src/**/*.spec.ts,src/**/*.test.ts --out-dir lib --copy-files --source-maps --verbose",
"build:ts": "tsc -p tsconfig.base.json",
"check": "npm run test",
"commitmsg": "commitlint -e $GIT_PARAMS",
"lint": "eslint src/**",
"lint:staged": "lint-staged",
"precommit": "yarn lint:staged",
"prepare": "npm run build",
"prepublish": "npm run build",
"release:major": "npm run check && npm version major && git push --follow-tags",
"release:minor": "npm run check && npm version minor && git push --follow-tags",
"release:patch": "npm run check && npm version patch && git push --follow-tags",
"test": "jest",
"test:watch": "jest --watch --coverage",
"tslint": "tslint -p tsconfig.json"
},
"typings": "lib/index.d.ts"
}