This repository has been archived by the owner on Aug 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.81 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@ivyjk/amplify-react-auth-provider",
"description": "React auth provider based on AWS Amplify",
"scripts": {
"clean": "git clean -dfqX -- ./node_modules **/dist/ **/node_modules/ **/tsconfig*tsbuildinfo",
"compile": "tsc --build tsconfig.build.json",
"lint": "eslint .",
"postinstall": "npm run compile",
"test": "jest --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ivyhjk/amplify-react-auth-provider.git"
},
"author": "Elvis Muñoz <elvis.munoz.f@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ivyhjk/amplify-react-auth-provider/issues"
},
"homepage": "https://github.com/ivyhjk/amplify-react-auth-provider#readme",
"devDependencies": {
"@apollo/client": "^3.4.10",
"@ivyhjk/eslint-config-typescript": "0.0.1-next.5",
"@ivyhjk/eslint-config-typescript-react": "0.0.1-next.7",
"@jest/types": "^28.1.0",
"@react-native-async-storage/async-storage": "^1.15.7",
"@react-native-community/google-signin": "^5.0.0",
"@react-native-community/netinfo": "^9.3.0",
"@testing-library/react": "^12.0.0",
"@testing-library/react-native": "^9.0.0",
"@types/graphql": "^14.5.0",
"@types/jest": "^27.0.1",
"@types/react": "^17.0.19",
"@types/react-native": "^0.67.1",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"amazon-cognito-identity-js": "^5.1.0",
"aws-amplify": "^4.2.6",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-react-app": "^6.0.0",
"eslint-config-semistandard": "^16.0.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-flowtype": "^7.0.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-import-length": "^1.0.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-standard": "^5.0.0",
"graphql": "^16.0.0",
"husky": "^8.0.1",
"jest": "^27.1.0",
"lint-staged": "^13.0.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-native": "^0.65.1",
"react-test-renderer": "^17.0.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
},
"dependencies": {
"@ivyhjk/amplify-react-auth": "file:packages/auth",
"@ivyhjk/amplify-react-core-auth": "file:packages/core-auth",
"@ivyhjk/amplify-react-federated-auth": "file:packages/federated-auth",
"@ivyhjk/amplify-react-native-social": "file:packages/native-social-auth",
"@ivyhjk/amplify-react-oauth": "file:packages/oauth"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix"
}
}