-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.19 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
{
"name": "mongql",
"version": "1.2.9",
"description": "Create graphql Schema from mongoose Schema",
"keywords": [
"codegen",
"schema-generator",
"mongoose-to-graphql",
"graphql-schema"
],
"repository": {
"type": "git",
"url": "git+https://github.com:Devorein/mongql.git"
},
"license": "MIT",
"author": "Devon Reid <devorein00@gmail.com>",
"main": "dist/index",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run clean && npm run emit-declarations && npx tsc --removeComments",
"build:watch": "npx tsc --incremental true -w",
"clean": "npx rimraf ./dist",
"emit-declarations": "npx tsc --declaration",
"lint": "npx eslint --ext .ts,.js src/ --fix --color",
"prepack": "npm run test_build",
"prepublishOnly": "npm run test_build",
"test": "npm run test:unit && npm run test:integration",
"test:integration": "npx jest --runInBand ./tests/integration",
"test:unit": "npx jest --runInBand ./tests/unit",
"test_build": "npm run test && npm run build",
"transpile": "npx babel src --out-dir dist --extensions .ts",
"typecheck": "npx tsc --noEmit --incremental false",
"preversion": "npm run test"
},
"lint-staged": {
"*.js": [
"npm run lint"
]
},
"dependencies": {
"@graphql-tools/resolvers-composition": "^6.1.0",
"bson": "^4.1.0",
"graphql": "^15.3.0",
"graphql-extra": "^0.2.2",
"graphql-scalars": "^1.2.6",
"graphql-tag": "^2.11.0",
"mongoose": "^5.10.2",
"pluralize": "^8.0.0"
},
"devDependencies": {
"@types/eslint": "^7.2.2",
"@types/jest": "^26.0.10",
"@types/mkdirp": "^1.0.1",
"@types/mongoose": "^5.7.36",
"@types/node": "^14.6.2",
"@types/pluralize": "0.0.29",
"@types/rimraf": "^3.0.0",
"@types/voca": "^1.4.0",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.7.0",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^26.4.2",
"lint-staged": "^10.2.13",
"nodemon": "^2.0.4",
"rimraf": "^3.0.2",
"sort-package-json": "^1.44.0",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
}
}