This repository has been archived by the owner on Aug 19, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
71 lines (71 loc) · 2.21 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
{
"name": "supabase-swr",
"version": "1.0.0-alpha.5",
"description": "A component library to use https://github.com/supabase/supabase-js with https://github.com/vercel/swr",
"keywords": [
"supabase",
"react",
"swr"
],
"repository": "https://github.com/alfredosalzillo/supabase-swr",
"author": "alfredo.salzillo <[email protected]>",
"license": "MIT",
"private": false,
"type": "module",
"source": "src/index.ts",
"main": "dist/index.cjs",
"module": "dist/index.es.js",
"umd:main": "dist/index.umd.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"package.json"
],
"devDependencies": {
"@babel/preset-env": "7.5.5",
"@supabase/supabase-js": "1.35.7",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.1",
"@types/jest": "^27.0.1",
"@types/react": "^17.0.17",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "4.17.0",
"@typescript-eslint/parser": "^4.29.3",
"babel-eslint": "10.0.2",
"babel-preset-env": "1.7.0",
"bundlesize": "0.17.2",
"documentation": "12.0.3",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"jest": "^27.0.6",
"jest-fetch-mock": "^3.0.3",
"microbundle": "^0.13.3",
"react": "17.0.2",
"react-dom": "16.9.0",
"swr": "1.3.0",
"ts-jest": "^27.0.5",
"typescript": "^4.3.5"
},
"peerDependencies": {
"@supabase/supabase-js": "^1.30.0",
"react": "^17.0.2 | ^18.0.0",
"swr": "^1.3.0"
},
"scripts": {
"dev": "microbundle watch --jsx React.createElement --tsconfig tsconfig.json",
"build": "microbundle --jsx React.createElement --tsconfig tsconfig.json",
"lint": "eslint -c .eslintrc.cjs ./src/*.ts* --fix",
"prepare": "rm -rf dist && yarn build",
"test": "jest --config jest.config.js",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"release": "yarn -s prepare && npm publish",
"release:alpha": "yarn -s prepare && npm publish --tag alpha"
}
}