-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
65 lines (65 loc) · 1.71 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
61
62
63
64
65
{
"author": "Zachry Baker",
"bugs": {
"url": "https://github.com/zachrybaker/ra-data-rest-client/issues"
},
"bundleDependencies": false,
"dependencies": {
"query-string": "^5.1.1",
"ra-core": "^3.8.5"
},
"deprecated": false,
"description": "Extends ra-data-simple-rest with the abilty to work with resources that do not use 'id' as their unique identifier property name.",
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/react": "^16.9.49",
"connected-react-router": "^6.8.0",
"cross-env": "^5.2.0",
"final-form": "^4.20.1",
"immutable": "^4.0.0-rc.12",
"jest": "^26.4.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-final-form": "^6.5.1",
"react-redux": "^7.2.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-saga": "^1.1.3",
"rimraf": "^2.6.3",
"seamless-immutable": "^7.1.4"
},
"files": [
"*.md",
"lib",
"esm",
"src"
],
"homepage": "https://github.com/zachrybaker/ra-data-rest-client#readme",
"keywords": [
"ra-data-simple-rest",
"ra-data-rest-client",
"rest",
"client",
"react-admin"
],
"license": "MIT",
"main": "lib/index.js",
"module": "esm/index.js",
"name": "ra-data-rest-client",
"peerDependencies": {
"ra-core": "^3.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zachrybaker/ra-data-rest-client.git"
},
"scripts": {
"build": "yarn run build-cjs && yarn run build-esm",
"build-cjs": "rimraf ./lib && tsc",
"build-esm": "rimraf ./esm && tsc --outDir esm --module es2015",
"watch": "tsc --outDir esm --module es2015 --watch"
},
"sideEffects": false,
"version": "1.1.1"
}