forked from CallumBoase/plasmic-supabase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.47 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
{
"name": "plasmic-supabase",
"version": "0.4.1",
"description": "Code components to use Supabase as a backend for a Plasmic app",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"type-check": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@plasmicapp/data-sources": "^0.1.143",
"cookie": "^0.6.0",
"use-deep-compare": "^1.2.1",
"uuid": "^9.0.1"
},
"peerDependencies": {
"@supabase/ssr": "^0.4.0",
"@supabase/supabase-js": "^2.44.2",
"@plasmicapp/loader-nextjs": "^1.0.371",
"@uppy/dashboard": "^3.7.5",
"@uppy/drag-drop": "^3.0.3",
"@uppy/file-input": "^3.1.0",
"@uppy/progress-bar": "^3.1.0",
"@uppy/react": "^3.2.2",
"@uppy/tus": "^3.5.3",
"react": "^18",
"react-dom": "^18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CallumBoase/plasmic-supabase.git"
},
"author": "Callum Boase, Ryan Mouritz",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/CallumBoase/plasmic-supabase/issues"
},
"homepage": "https://github.com/CallumBoase/plasmic-supabase#readme",
"devDependencies": {
"@types/cookie": "^0.6.0",
"@types/react": "^18.2.78",
"@types/react-dom": "^18.2.25",
"@types/uuid": "^9.0.8",
"rimraf": "^5.0.5",
"typescript": "^5.4.5"
}
}