-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
74 lines (74 loc) · 1.51 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
{
"name": "react-auth-hook",
"version": "1.2.0-beta.1",
"description": "A small library for authenticating users in React using Auth0",
"keywords": [
"javascript",
"typescript",
"react",
"auth0"
],
"author": "Michael Nissen <[email protected]>",
"license": "MIT",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"test": "jest"
},
"directories": {
"src": "src",
"test": "__tests__"
},
"files": [
"lib/**/*",
"README.md",
"package.json"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qruzz/react-auth-hook.git"
},
"bugs": {
"url": "https://github.com/qruzz/react-auth-hook/issues"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@testing-library/react": "^11.0.1",
"@types/jest": "^26.0.13",
"@types/react": "^16.9.49",
"husky": "^4.2.5",
"jest": "^26.4.2",
"lint-staged": "^10.3.0",
"prettier": "^2.1.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"./**/*.{js,jsx,ts,tsx,json,yml,yaml,md,mdx,graphql}": [
"prettier --write"
]
},
"dependencies": {
"auth0-js": "^9.13.4",
"immer": "^7.0.8",
"use-immer": "^0.4.1",
"@types/auth0-js": "^9.13.4"
},
"peerDependencies": {
"react": "^16.13.1"
}
}