forked from Swizec/useAuth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.6 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": "react-use-auth",
"version": "0.5.3",
"description": "The simplest way to add authentication to your React app. Handles everything for you. Users, login forms, redirects, sharing state between components. Everything",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.module.js",
"unpkg": "dist/index.umd.js",
"repository": "[email protected]:Swizec/useAuth.git",
"author": "Swizec Teller <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "microbundle --jsx React.createElement",
"dev": "microbundle watch --jsx React.createElement"
},
"files": [
"src",
"dist"
],
"dependencies": {
"auth0-js": "^9.11.2"
},
"devDependencies": {
"@types/auth0-js": "^9.10.6",
"@types/react": "^16.9.5",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"microbundle": "^0.12.0-next.6",
"prettier": "^1.18.2",
"react": "^16.8.6"
},
"peerDependencies": {
"react": "^16.8.0"
},
"eslintConfig": {
"extends": [
"plugin:prettier/recommended",
"plugin:react/recommended"
],
"env": {
"browser": true,
"es6": true
},
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
}
}
}