-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.39 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
{
"name": "graphql-directive-pagination",
"version": "1.0.15",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"exports": {
".": "./lib/index.js",
"./package.json": "./package.json"
},
"license": "MIT",
"description": "Manipulates SQL clauses to provide pagination ability to fields in GraphQL. Easy to integrate.",
"keywords": [
"graphql",
"connection",
"relay",
"pagination",
"directive"
],
"repository": "[email protected]:taylrun/graphql-directive-pagination.git",
"author": "Taylor Goolsby <[email protected]>",
"scripts": {
"build": "rm -rf lib && tsc",
"format": "./node_modules/.bin/prettier --write 'src/**/*.{ts,tsx,js,jsx}'",
"lint": "./node_modules/.bin/tslint --fix 'src/**/*.{ts,tsx}'",
"test": "npm run build && boxtape tests/**/*.test.js",
"test-q": "npm run build && boxtape tests/query.test.js",
"test-r": "npm run build && boxtape tests/resolver-with-clauses.test.js",
"test-s": "npm run build && boxtape tests/resolver-without-clauses.test.js",
"test-t": "npm run build && boxtape tests/transform.test.js",
"prepare": "npm run build",
"prepublishOnly": "npm run test",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"peerDependencies": {
"graphql": "^16.7.1"
},
"dependencies": {
"@graphql-tools/schema": "^10.0.0",
"@graphql-tools/stitch": "^9.0.0",
"@graphql-tools/utils": "^10.0.3",
"@graphql-tools/wrap": "^10.0.0",
"luxon": "^3.3.0",
"mysql": "2.18.1"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/node": "^7.14.9",
"@babel/preset-env": "^7.15.0",
"@types/fs-extra": "^8.0.0",
"@types/graphql": "^14.5.0",
"@types/lodash.get": "^4.4.6",
"@types/node": "^14.17.9",
"@types/tape": "^5.6.0",
"@types/ws": "^7.4.7",
"body-parser": "^1.20.2",
"boxtape": "^0.0.16",
"cross-fetch": "^4.0.0",
"express": "^4.18.2",
"graphql": "^16.7.1",
"graphql-http": "^1.20.0",
"graphql-tag": "^2.12.6",
"husky": "^1.3.1",
"lint-staged": "^7.3.0",
"prettier": "^2.1.2",
"sinon": "^15.2.0",
"sqlite": "^4.2.1",
"sqlite3": "^5.1.6",
"ts-node": "^10.2.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.1.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}