-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1.04 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
{
"name": "elide-simple-rest",
"description": "Elide simple REST data provider for refine.",
"version": "0.0.2",
"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": {
"@pankod/refine-core": "^3.18.0",
"@esbuild-plugins/node-resolve": "^0.1.4",
"@types/jest": "^27.5.1",
"jest": "^27.5.1",
"nock": "^13.1.3",
"ts-jest": "^27.1.3",
"tslib": "^2.3.1",
"tsup": "^5.11.13"
},
"peerDependencies": {
"@pankod/refine-core": "^3.18.0"
},
"dependencies": {
"axios": "^0.27.2",
"query-string": "^7.0.1"
},
"publishConfig": {
"access": "public"
}
}