-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.52 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
{
"name": "elide-simple-graphql",
"description": "Elide graphql data provider for refine.",
"version": "0.0.2",
"git repository": "https://github.com/chirdeeptomar/refine-elide-graphql",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"private": false,
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsup --watch --dts --format esm,cjs,iife --legacy-output",
"build": "tsup --dts --format esm,cjs,iife --minify --legacy-output",
"test": "jest --passWithNoTests --runInBand",
"prepare": "npm run build"
},
"author": "Chirdeep Tomar",
"module": "dist/esm/index.js",
"devDependencies": {
"@babel/preset-env": "^7.22.10",
"@babel/preset-typescript": "^7.22.5",
"@esbuild-plugins/node-resolve": "^0.2.2",
"@types/jest": "^29.5.3",
"@types/pluralize": "^0.0.30",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"nock": "^13.3.3",
"ts-jest": "^29.1.1",
"tslib": "^2.6.1",
"tsup": "^7.2.0"
},
"dependencies": {
"@babel/core": "^7.22.10",
"@babel/plugin-transform-modules-commonjs": "^7.22.5",
"babel-jest": "^29.6.2",
"camelcase": "^8.0.0",
"gql-query-builder": "^3.8.0",
"graphql": "^16.8.0",
"graphql-request": "^6.1.0",
"pluralize": "^8.0.0",
"query-string": "^8.1.0"
},
"peerDependencies": {
"@refinedev/core": "^4.0.0",
"gql-query-builder": "^3.5.5",
"graphql-request": "^5.2.0"
},
"publishConfig": {
"access": "public"
}
}