forked from supabase/auth-helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.99 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
{
"name": "@supabase/supabase-auth-helpers",
"version": "0.0.0",
"description": "A collection of framework specific Auth utilities for working with Supabase.",
"engines": {
"node": "^10.13.0 || >=12.0.0"
},
"scripts": {
"clean": "rimraf dist",
"pretty": "prettier --write \"src/**/*.{ts,tsx}\" \"src/*.ts\"",
"lint": "tsc --noEmit && eslint --fix --ext .ts ./src",
"docs": "typedoc --options typedoc.js src",
"prepack": "npm run build",
"postinstall": "npm i --prefix=src",
"install:nextjs": "npm i --prefix=examples/nextjs --no-package-lock",
"install:examples": "npm run install:nextjs",
"build": "npm run clean && tsc -p tsconfig.build.json",
"build:nextjs": "npm run build --prefix=examples/nextjs",
"build:examples": "npm run build:nextjs",
"dev:nextjs": "npm run dev --prefix=examples/nextjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supabase-community/supabase-auth-helpers.git"
},
"keywords": [
"Supabase",
"Auth",
"Nextjs",
"Remix"
],
"author": "Supabase Community",
"license": "MIT",
"bugs": {
"url": "https://github.com/supabase-community/supabase-auth-helpers/issues"
},
"homepage": "https://github.com/supabase-community/supabase-auth-helpers#readme",
"devDependencies": {
"@types/node": "^14.14.20",
"@types/react": "^17.0.20",
"@types/react-dom": "^17.0.9",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"next": "^12.0.10",
"prettier": "^2.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"typedoc": "^0.22.11",
"typescript": "^4.1.3"
},
"dependencies": {
"@supabase/supabase-js": "^1.35.3",
"tslib": "^2.3.1"
},
"peerDependencies": {
"next": ">=10"
}
}