-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.81 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
{
"name": "typegraphql-relay-connections",
"description": "TypeGraphQL Relay Connection Helpers",
"license": "MIT",
"version": "3.0.0",
"files": [
"lib/**/*"
],
"repository": "https://github.com/johnsonjo4531/typegraphql-relay-connections/",
"homepage": "https://johnsonjo4531.github.io/typegraphql-relay-connections/",
"devDependencies": {
"@microsoft/api-extractor": "^7.19.5",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"class-validator": "^0.13.2",
"del-cli": "^4.0.1",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"graphql": "^15.3.0",
"graphql-tag": "^2.12.6",
"jest": "^27.5.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"reflect-metadata": "^0.1.13",
"ts-jest": "^27.1.3",
"type-graphql": "^1.1.1",
"typescript": "^4.6.2"
},
"peerDependencies": {
"graphql": ">=16.0.0 || >=15.0.0",
"reflect-metadata": ">=0.1.13",
"type-graphql": "1.x || 2.x || ^2.0.0-beta.1"
},
"scripts": {
"build": "npm-run-all clean tsc format lint generate",
"tsc": "tsc -p ./tsconfig.json",
"format": "prettier --write \"src/**/*.ts\"",
"clean": "del ./lib",
"lint": "eslint -c ./.eslintrc.json ./src/index.ts",
"test": "jest --config jestconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"generate": "node ./lib/__tests__/data/gen-schema.js"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"keywords": [
"TypeGraphQL",
"GraphQL",
"TypeScript",
"Relay",
"Connection"
],
"author": "johnsonjo4531"
}