forked from raphiniert-com/ra-data-postgrest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.16 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
{
"name": "@raphiniert/ra-data-postgrest",
"version": "1.1.8",
"description": "postgREST data provider for react-admin",
"main": "lib/index.js",
"module": "esm/index.js",
"sideEffects": false,
"files": [
"*.md",
"lib",
"esm",
"src"
],
"authors": [
"François Zaninotto",
"Raphael Scheible"
],
"repository": "raphiniert-com/ra-data-postgrest",
"homepage": "https://github.com/raphiniert-com/ra-data-postgrest",
"bugs": "https://github.com/raphiniert-com/ra-data-postgrest/issues",
"license": "MIT",
"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",
"prepare": "install-peers"
},
"dependencies": {
"query-string": "^5.1.1"
},
"devDependencies": {
"cross-env": "^5.2.0",
"install-peers-cli": "^2.2.0",
"rimraf": "^2.6.3",
"typescript": "^3.9.5"
},
"peerDependencies": {
"ra-core": "^3.19.6"
}
}