forked from supabase/auth-helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.65 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
{
"name": "@supabase/auth-helpers",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "turbo run build",
"build:example": "turbo run build:example",
"build:example:sveltekit": "turbo run build:example --filter=@example/sveltekit",
"build:example:nextjs": "turbo run build:example --filter=@example/nextjs",
"build:sveltekit": "turbo run build --filter=@supabase/auth-helpers-sveltekit",
"build:sveltekit:watch": "turbo run build:watch --filter=@supabase/auth-helpers-sveltekit",
"build:nextjs": "turbo run build --filter=@supabase/auth-helpers-nextjs",
"build:react": "turbo run build --filter=@supabase/auth-helpers-react",
"build:remix": "turbo run build --filter=@supabase/auth-helpers-remix",
"build:shared": "turbo run build --filter=@supabase/auth-helpers-shared",
"build:ssr": "turbo run build --filter=@supabase/ssr",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint --filter=!@example/*",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"check": "prettier --check .",
"format": "prettier --write .",
"docs": "typedoc",
"clean:all": "turbo run clean:all",
"ci:version": "changeset version",
"ci:release": "changeset publish",
"prepare": "husky install"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"turbo": "^1.11.3",
"typedoc": "^0.24.8",
"typescript": "^4.9.5"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=16.0.0"
},
"packageManager": "pnpm@7.1.7",
"peerDependencies": {
"typescript": "4.0.x || 4.1.x || 4.2.x || 4.3.x || 4.4.x || 4.5.x || 4.6.x"
},
"lint-staged": {
"**/*.{ts,tsx,md}": [
"prettier --check"
]
}
}