-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.31 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.31 KB
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
{
"name": "graphql-query-to-json",
"version": "2.0.6",
"description": "Convert graphQL queries and mutations to easily readable JSON representations.",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && tsc",
"watch": "npm run build -- --watch",
"test": "jest dist",
"test:coverage": "npm test -- --coverage",
"updateTestCoverage": "node scripts/updateTestCoverage.js",
"lintFull": "prettier --write '**/*.{js,jsx,ts,tsx,json}' && eslint --fix '**/*.{js,jsx,ts,tsx}'"
},
"author": "Tray.io",
"homepage": "https://github.com/trayio/graphql-query-to-json",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.33.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.2.1",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"eslint": "^6.7.2",
"eslint-config-rickschubert": "^1.0.11",
"eslint-plugin-jest": "^23.1.1",
"husky": "^3.1.0",
"jest": "^30.0.5",
"lint-staged": "^9.5.0",
"node-fetch": "^3.3.2",
"prettier": "^3.6.2",
"typescript": "^5.9.2"
},
"dependencies": {
"graphql": "^16.11.0",
"json-to-graphql-query": "^2.3.0",
"lodash.mapvalues": "^4.6.0"
}
}