-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
42 lines (42 loc) · 1.3 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
{
"name": "ra-supabase-core",
"version": "2.3.0",
"repository": "git@github.com:marmelab/ra-supabase.git",
"author": "Gildas Garcia <1122076+djhi@users.noreply.github.com>",
"license": "MIT",
"files": [
"*.md",
"lib",
"esm",
"src"
],
"main": "lib/index",
"module": "esm/index.js",
"types": "esm/index.d.ts",
"sideEffects": false,
"peerDependencies": {
"@raphiniert/ra-data-postgrest": "^2.0.0",
"@supabase/supabase-js": "^2.0.0",
"ra-core": "^5.0.1"
},
"devDependencies": {
"@raphiniert/ra-data-postgrest": "^2.1.0",
"@supabase/supabase-js": "^2.43.5",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^15.0.7",
"@testing-library/user-event": "^14.5.2",
"ra-core": "^5.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router": "^6.23.1",
"react-router-dom": "^6.23.1"
},
"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",
"lint": "eslint --fix ./src",
"test-unit": "jest ./src"
}
}