This repository has been archived by the owner on Jan 30, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.38 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
{
"name": "hasura-gql-client",
"version": "0.0.25",
"keywords": [
"graphql-client",
"graphql",
"graphql-schema",
"graphql-js",
"hasura",
"graphql-api",
"hasura-graphql",
"hasura-remote-schema",
"hasura-graphql-engine"
],
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/JaLe29/hasura-gql-client.git"
},
"license": "MIT",
"scripts": {
"test": "jest",
"build": "yarn clean && vite build --mode release && yarn build:types",
"build:types": "tsc ./src/index.ts --declaration --emitDeclarationOnly --declarationDir ./dist/types",
"clean": "rimraf dist",
"lint": "eslint \"src/**/*.ts\" \"example/**/*.ts\"",
"test:all": "yarn lint && yarn build && yarn test",
"lint:fix": "eslint \"src/**/*.ts\" --fix",
"start:demo": "ts-node -r tsconfig-paths/register --project tsconfig.json --files ./example/example1.ts",
"start:test": "ts-node -r tsconfig-paths/register --project tsconfig.json --files ./example/test.example.ts",
"start:publish": "ts-node -r tsconfig-paths/register --project tsconfig.json --files ./scripts/lib-publish.ts"
},
"dependencies": {
"axios": "^1.1.3",
"graphql-prettier": "^1.0.6"
},
"packageManager": "[email protected]",
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/eslint-parser": "^7.19.1",
"@types/babel__core": "^7.1.20",
"@types/node": "^18.11.9",
"@types/prettier": "^2.7.1",
"@types/shelljs": "^0.8.11",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"dotenv": "^16.0.3",
"eslint": "^8.27.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"expect-type": "^0.15.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"shelljs": "^0.8.5",
"ts-jest": "^29.0.3",
"jest": "^29.3.1",
"@types/jest": "^29.2.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "~4.8.4",
"vite": "^3.2.3"
}
}