-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
56 lines (56 loc) · 1.45 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
{
"name": "nestjs-supabase-auth",
"version": "1.0.8",
"description": "NestJS Passport Strategy for Supabase Auth",
"main": "dist/index.js",
"readmeFilename": "README.md",
"files": [
"dist/**/*",
"*.md"
],
"scripts": {
"start:dev": "tsc -w",
"build": "tsc",
"prepare": "npm run build",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/hiro1107/nestjs-supabase-auth.git"
},
"keywords": [
"nestjs",
"supabase",
"supabase-auth",
"passport",
"passport-jwt",
"auth",
"authentication"
],
"author": "Atsuhiro Teshima",
"license": "MIT",
"bugs": {
"url": "https://github.com/hiro1107/nestjs-supabase-auth/issues"
},
"homepage": "https://github.com/hiro1107/nestjs-supabase-auth",
"devDependencies": {
"@supabase/supabase-js": "^2.36.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.20",
"@types/passport-strategy": "^0.2.35",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"jest": "^26.6.3",
"passport-jwt": "^4.0.0",
"passport-strategy": "^1.0.0",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
}
}