-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
51 lines (51 loc) · 1.6 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
{
"name": "@raphiniert/ra-data-postgrest",
"version": "2.4.1",
"description": "postgREST data provider for react-admin",
"main": "lib/index.js",
"module": "esm/index.js",
"sideEffects": false,
"files": [
"*.md",
"lib",
"esm",
"src"
],
"authors": [
"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": {
"coverage": "jest --coverage",
"test": "jest --watchAll",
"build": "npm run build-cjs && npm 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",
"prettier": "prettier --config ./.prettierrc.js --write --list-different \"src/**/*.{js,json,ts,tsx,css,md}\""
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/qs": "^6.9.15",
"cross-env": "^7.0.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"install-peers-cli": "^2.2.0",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.1.5",
"typescript": "^5.5.2"
},
"peerDependencies": {
"ra-core": "^3.0.0 || ^4.1.0 || ^5.0.1"
},
"dependencies": {
"lodash.isequal": "^4.5.0",
"qs": "^6.12.1"
}
}