-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
73 lines (73 loc) · 2.17 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": "typeorm-relations-graphql",
"version": "3.0.0",
"description": "A helper to join TypeORM relations based on fields selected in a GraphQL query.",
"keywords": [
"typeorm",
"graphql",
"relations"
],
"author": "Equalogic Ltd",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/equalogic/typeorm-relations-graphql",
"repository": {
"type": "git",
"url": "https://github.com/equalogic/typeorm-relations-graphql.git"
},
"scripts": {
"prebuild": "rimraf dist && npm run barrels:generate",
"build": "tsc -p tsconfig.build.json",
"postbuild": "cp package.json README.md dist/",
"format": "prettier --write .",
"lint": "eslint --ext .ts --ignore-path .gitignore .",
"lint:fix": "eslint --ext .ts --ignore-path .gitignore . --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "rimraf test/.results && mkdirp test/.results && jest --ci --runInBand",
"postversion": "npm run postbuild",
"release": "np --no-publish --no-cleanup",
"barrels:generate": "barrelsby --config barrelsby.json"
},
"peerDependencies": {
"graphql": ">=14.6.0",
"typeorm": "^0.3.0"
},
"dependencies": {
"graphql-info-inspector": "^1.0.0",
"typeorm-relations": "^1.0.0"
},
"devDependencies": {
"@graphql-tools/mock": "9.0.15",
"@graphql-tools/schema": "10.0.16",
"@graphql-tools/utils": "10.7.2",
"@types/jest": "29.5.14",
"@types/node": "22.13.1",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"barrelsby": "2.8.1",
"eslint": "8.31.0",
"eslint-config-prettier": "8.6.0",
"eslint-import-resolver-typescript": "3.5.3",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"graphql": "15.10.1",
"jest": "29.7.0",
"mkdirp": "3.0.1",
"np": "10.2.0",
"prettier": "3.2.2",
"sqlite3": "5.1.7",
"ts-jest": "29.2.5",
"typeorm": "0.3.20",
"typescript": "5.7.3"
},
"jest-junit": {
"outputDirectory": "./test/.results",
"outputName": "junit.xml"
},
"main": "index.js",
"types": "index.d.ts"
}