-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.02 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": "gql-assist",
"version": "1.0.0",
"description": "GQL Assist is a powerful tool designed to streamline the development of GraphQL APIs in a NestJS & React environment",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"gql-assist": "bin/cli"
},
"private": false,
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"lint": "eslint --fix && tsc -p . --noEmit && yarn prettier",
"prettier": "prettier --write \"**/src/**/*.{ts,tsx}\" -c",
"build": "rimraf dist && tsc -p .",
"semantic-release": "semantic-release",
"cli": "ts-node src/.ts",
"start": "rimraf dist && tsc -p . --watch"
},
"keywords": [
"GraphQL",
"GQL",
"Codegen",
"Code Generation",
"TypeScript",
"TS"
],
"author": {
"name": "Rinto Jose",
"email": "[email protected]"
},
"license": "ISC",
"dependencies": {
"@graphql-tools/graphql-file-loader": "^8.0.1",
"@graphql-tools/json-file-loader": "^8.0.1",
"@graphql-tools/load": "^8.0.2",
"@graphql-tools/url-loader": "^8.0.2",
"chalk": "4.0.0",
"cli-highlight": "^2.1.11",
"clifer": "^1.2.2",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"graphql": "^16.8.2",
"ink": "^3.0.8",
"minimum-edit-distance": "^1.1.7",
"name-util": "^1.3.0",
"pluralize": "^8.0.0",
"prettier": "^3.3.0",
"react": "17.0.2",
"shelljs": "^0.8.5",
"tsds-tools": "^1.2.1",
"typescript": "^5.4.5"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/fs-extra": "^11.0.4",
"@types/ink": "^2.0.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.0",
"@types/pluralize": "^0.0.33",
"@types/react": "^18.3.3",
"@types/shelljs": "^0.8.15",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"rimraf": "^5.0.7",
"semantic-release": "^24.0.0",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.2"
}
}