-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
70 lines (70 loc) · 2.24 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
{
"name": "react-supabase",
"version": "0.2.0",
"description": "React Hooks library for Supabase",
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"types": "./dist/types/index.d.ts",
"exports": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js"
},
"sideEffects": false,
"files": [
"dist/**"
],
"repository": "tmm/react-supabase",
"homepage": "https://react-supabase.vercel.app",
"license": "MIT",
"scripts": {
"build": "vite build",
"clean": "rimraf dist",
"lint": "eslint . --cache",
"lint:fix": "yarn lint --fix",
"lint:format": "prettier --write .",
"lint:types": "tsc --noEmit",
"prepare": "husky install",
"prepublishOnly": "yarn clean && yarn build",
"size": "size-limit",
"test": "jest"
},
"peerDependencies": {
"@supabase/supabase-js": "^1.11.6",
"react": "^17.0.0"
},
"dependencies": {},
"devDependencies": {
"@size-limit/preset-small-lib": "^4.12.0",
"@supabase/postgrest-js": "0.34.1",
"@supabase/supabase-js": "1.25.2",
"@testing-library/react-hooks": "^5.1.1",
"@types/jest": "^26.0.24",
"@types/node": "^14.17.32",
"@types/react": "^17.0.34",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.2.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest-dom": "^3.9.2",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^4.12.4",
"husky": "^6.0.0",
"jest": "^26.6.3",
"jest-watch-typeahead": "^0.6.5",
"lint-staged": "^10.5.4",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"size-limit": "^4.12.0",
"ts-jest": "^26.5.5",
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"vite": "^2.6.13",
"vite-plugin-dts": "^0.5.3"
}
}