-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
60 lines (60 loc) · 1.53 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
{
"name": "ra-data-simple-prisma",
"version": "5.2.1",
"description": "Simple react-admin dataprovider for prisma, supporting audit logs and roles",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --treeshake",
"dev": "pnpm build --watch",
"lint": "eslint src --fix",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
"prepublish": "pnpm build",
"test": "jest",
"release": "pnpm changeset && pnpm changeset version"
},
"files": [
"/dist"
],
"keywords": [
"prisma",
"rest",
"marmelab",
"react-admin",
"dataprovider",
"audit-log",
"audit",
"admin",
"react"
],
"repository": {
"type": "git",
"url": "https://github.com/codeledge/ra-data-simple-prisma.git",
"directory": "packages/ra-data-simple-prisma"
},
"author": "Orlando Groppo <[email protected]>",
"license": "MIT",
"peerDependencies": {
"@prisma/client": ">=5"
},
"dependencies": {
"axios": "^1.6.8",
"deepmerge": "^4.3.1",
"deverything": "^1.5.0"
},
"devDependencies": {
"@babel/core": "7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/preset-typescript": "^7.24.1",
"@changesets/cli": "^2.27.7",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"eslint-config-custom": "workspace:*",
"jest": "^29.7.0",
"react-admin": "^4.16.13",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.4.3"
}
}