-
Notifications
You must be signed in to change notification settings - Fork 108
/
package.json
79 lines (79 loc) · 2.28 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
{
"name": "react-use-auth",
"version": "2.0.4",
"description": "Add authentication to your app in 5 minutes. Supports various auth providers.",
"source": [
"src/providers/auth0.ts",
"src/providers/NetlifyIdentity.ts",
"src/index.ts"
],
"main": "dist/react-use-auth.js",
"modern": "dist/react-use-auth.modern.js",
"module": "dist/react-use-auth.esm.js",
"types": "dist/index.d.ts",
"repository": "git@github.com:Swizec/useAuth.git",
"author": "Swizec Teller <swizec@swizec.com>",
"license": "MIT",
"private": false,
"scripts": {
"build": "microbundle --jsx React.createElement",
"dev": "microbundle watch --jsx React.createElement",
"test": "jest",
"install-peers": "install-peers"
},
"files": [
"src",
"dist",
"auth0.js",
"netlify-identity.js"
],
"dependencies": {
"@xstate/react": "^1.0.3",
"date-fns": "^2.16.1",
"xstate": "^4.13.0"
},
"devDependencies": {
"@types/auth0-js": "^9.14.2",
"@types/jest": "^25.1.4",
"@types/netlify-identity-widget": "^1.9.1",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-test-renderer": "^16.9.2",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"fetch-mock": "^9.3.0",
"install-peers-cli": "^2.2.0",
"jest": "^25.1.0",
"microbundle": "^0.13.0",
"prettier": "^1.18.2",
"react": "^17.0.0",
"react-test-renderer": "^17.0.1",
"ts-jest": "^25.2.1"
},
"peerDependencies": {
"auth0-js": "^9.14.0",
"netlify-identity-widget": "^1.9.1",
"react": "^17.0.0",
"react-dom": "^17.0.1"
},
"eslintConfig": {
"extends": [
"plugin:prettier/recommended",
"plugin:react/recommended"
],
"env": {
"browser": true,
"es6": true
},
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
}
}
}