generated from sergiodxa/remix-auth-strategy-template
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
65 lines (65 loc) · 1.64 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
{
"name": "remix-auth-google",
"version": "2.0.0",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"build": "tsc --project tsconfig.json",
"typecheck": "tsc --project tsconfig.json --noEmit",
"lint": "eslint . --fix --ignore-path .gitignore",
"format": "prettier --config .prettierrc --write --list-different --ignore-path .gitignore .",
"prepare": "husky install"
},
"keywords": [
"remix",
"remix-auth",
"auth",
"authentication",
"strategy",
"google-auth"
],
"author": {
"name": "Bhanu Teja Pachipulusu",
"email": "pbteja1998@gmail.com",
"url": "https://github.com/pbteja1998"
},
"repository": {
"url": "https://github.com/pbteja1998/remix-auth-google",
"type": "git"
},
"license": "MIT",
"files": [
"build",
"package.json",
"README.md"
],
"peerDependencies": {
"@remix-run/server-runtime": "^2.0.1",
"remix-auth": "^3.2.1"
},
"devDependencies": {
"@remix-run/node": "^2.0.1",
"@remix-run/react": "^2.0.1",
"@remix-run/server-runtime": "^2.0.1",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"babel-jest": "^27.4.5",
"eslint": "^8.5.0",
"eslint-config-galex": "^3.5.3",
"husky": ">=6",
"lint-staged": ">=12.1.4",
"prettier": "^2.5.1",
"react": "^18.2.0",
"remix-auth": "^3.2.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"dependencies": {
"remix-auth-oauth2": "^1.11.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "yarn lint",
"*.{js,jsx,ts,tsx,css,json,md}": "yarn format"
}
}