forked from graphql-compose/graphql-compose-mongoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.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
{
"name": "graphql-compose-mongoose",
"version": "0.0.0-semantically-released",
"description": "Plugin for `graphql-compose` which derive a graphql types from a mongoose model.",
"license": "MIT",
"files": [
"lib"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/graphql-compose/graphql-compose-mongoose.git"
},
"keywords": [
"graphql",
"compose",
"graphql-compose",
"mongoose",
"mongodb"
],
"bugs": {
"url": "https://github.com/graphql-compose/graphql-compose-mongoose/issues"
},
"homepage": "https://github.com/graphql-compose/graphql-compose-mongoose",
"dependencies": {
"dataloader": "^2.0.0",
"graphql-compose-connection": "8.2.1",
"graphql-compose-pagination": "8.3.0"
},
"peerDependencies": {
"graphql-compose": "^7.21.4 || ^8.0.0 || ^9.0.0",
"mongoose": "^6.0.0 || ^5.0.0 || ^4.4.0"
},
"devDependencies": {
"@types/jest": "27.0.3",
"@typescript-eslint/eslint-plugin": "5.7.0",
"@typescript-eslint/parser": "5.7.0",
"eslint": "8.4.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-prettier": "4.0.0",
"graphql": "16.1.0",
"graphql-compose": "9.0.5",
"jest": "27.4.5",
"mongodb-memory-server": "8.0.4",
"mongoose": "6.1.2",
"prettier": "2.5.1",
"request": "2.88.2",
"rimraf": "3.0.2",
"semantic-release": "18.0.1",
"ts-jest": "27.1.1",
"typescript": "4.5.4"
},
"scripts": {
"prepare": "tsc -p ./tsconfig.build.json",
"build": "rimraf lib && tsc -p ./tsconfig.build.json",
"watch": "jest --watch",
"coverage": "jest --coverage --maxWorkers 4",
"lint": "yarn eslint && yarn tscheck",
"eslint": "eslint --ext .ts ./src",
"tscheck": "tsc --noEmit",
"test": "yarn coverage && yarn lint",
"link": "yarn build && yarn link graphql-compose && yarn link graphql-compose-connection && yarn link graphql-compose-pagination && yarn link mongoose && yarn link",
"unlink": "rimraf node_modules && yarn install",
"semantic-release": "semantic-release",
"test-prev-vers": "yarn add [email protected] --dev --ignore-scripts && yarn coverage && git checkout HEAD -- package.json yarn.lock"
}
}