-
-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.54 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.54 KB
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
{
"name": "ra-data-fakerest",
"version": "5.14.4",
"description": "JSON Server data provider for react-admin",
"zshy": "./src/index.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.cts",
"type": "module",
"sideEffects": false,
"files": [
"LICENSE",
"*.md",
"dist",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/marmelab/react-admin.git"
},
"keywords": [
"reactjs",
"react",
"react-admin",
"rest",
"fakerest",
"local"
],
"author": "François Zaninotto",
"license": "MIT",
"bugs": {
"url": "https://github.com/marmelab/react-admin/issues"
},
"homepage": "https://github.com/marmelab/react-admin#readme",
"scripts": {
"build": "zshy --silent"
},
"dependencies": {
"fakerest": "^4.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"expect": "^27.4.6",
"ra-core": "^5.14.4",
"typescript": "^5.1.3",
"zshy": "^0.5.0"
},
"peerDependencies": {
"ra-core": "^5.0.0"
},
"gitHead": "19dcb264898c8e01c408eb66ce02c50b67c851ab",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
}
}