-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.72 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "ra-supabase-media-library",
"version": "1.0.4",
"author": "Alex Mendes",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build:cjs": "tsc --module commonjs --outDir dist",
"build:esm": "tsc --module esnext --outDir dist/esm",
"build": "yarn build:cjs && yarn build:esm",
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.json .",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git@github.com:alexandermendes/ra-supabase-media-library.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"src",
"dist"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"peerDependencies": {
"@mui/icons-material": "^5.0.0",
"@mui/material": "^5.0.0",
"@supabase/supabase-js": "^2.4.0",
"react": "*",
"react-admin": "^4.0.0",
"react-dom": "*",
"react-hook-form": "*"
},
"peerDependenciesMeta": {
"react-dom": {
"@supabase/supabase-js": true
}
},
"dependencies": {
"browser-image-compression": "^2.0.0",
"matcher": "^5.0.0",
"param-case": "^3.0.4",
"pretty-bytes": "^6.0.0",
"react-dropzone": "^14.2.3",
"react-easy-crop": "^4.6.3",
"unfetch": "^5.0.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^8.3.4",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.3",
"@semantic-release/npm": "^7.1.3",
"@semantic-release/release-notes-generator": "^9.0.3",
"@supabase/supabase-js": "^2.4.0",
"@types/jest": "^29.0.0",
"@types/js-cookie": "^3.0.2",
"@types/node": "^18.11.18",
"@types/qs": "^6.9.7",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"commitlint": "^8.3.5",
"eslint": "^8.2.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^4.2.5",
"jest": "^29.0.0",
"prettier": "^2.8.1",
"react": "^18.2.0",
"react-admin": "^4.7.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.5",
"semantic-release": "^19.0.5",
"ts-jest": "^29.0.0",
"typescript": "4.9.4"
}
}