-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.2 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
{
"name": "refine-nestjs-prisma-crud",
"version": "0.0.2",
"private": false,
"description": "refine Nest-Prisma-Crud data provider.",
"repository": {
"type": "git",
"url": "https://github.com/gateway240/refine-nestjs-prisma-crud.git"
},
"license": "MIT",
"author": "refine",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src",
"./refine.config.js"
],
"scripts": {
"build": "tsup --format esm,cjs,iife --minify --legacy-output",
"dev": "tsup --watch --format esm,cjs,iife --legacy-output",
"prepare": "npm run build",
"test": "jest --passWithNoTests --runInBand"
},
"dependencies": {
"axios": "^1.6.2",
"query-string": "^7.1.1",
"nestjs-prisma-crud": "^1.0.0-beta.18"
},
"devDependencies": {
"@esbuild-plugins/node-resolve": "^0.1.4",
"@types/jest": "^29.2.4",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"nock": "^13.4.0",
"ts-jest": "^29.0.3",
"tslib": "^2.3.1",
"tsup": "^6.7.0"
},
"peerDependencies": {
"@refinedev/core": "^4.46.1"
},
"engines": {
"node": ">=10"
},
"publishConfig": {
"access": "public"
}
}