-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.92 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "react-implicit-auth",
"version": "1.0.0",
"description": "react-implicit-auth is a React Provider component that simplifies the implicit grant flow authorization and authentication process using the following social API providers.",
"author": "Dmytro Chumak <hello@webman.pro> (https://webman.pro/)",
"homepage": "https://react-implicit-auth.webman.pro",
"main": "lib/index.js",
"module": "esm/index.js",
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"keywords": [
"react",
"implicit-flow",
"auth",
"authorization",
"authentication",
"react-context",
"grant-flow",
"facebook-api",
"google-api"
],
"scripts": {
"start": "styleguidist server --port 3333",
"build:docs": "yarn clean && styleguidist build && yarn copy:assets",
"copy:assets": "cp logo.svg docs && cp favicon.ico docs",
"build:cjs": "tsc",
"build:es": "tsc -m esNext --outDir esm",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "yarn lint --fix",
"lint:types": "tsc --noEmit",
"build": "yarn clean && yarn build:cjs && yarn build:es",
"format": "prettier --write src styleguide",
"clean": "rm -rf lib esm docs"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn lint:types"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/wwwebman/react-implicit-auth.git"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.13.7",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"babel-eslint": "^10.0.0",
"babel-loader": "^8.2.2",
"eslint": "^7.5.0",
"eslint-config-prettier": "7.2.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-docgen-typescript": "^1.21.0",
"react-dom": "^17.0.1",
"react-styleguidist": "^11.1.5",
"typescript": "^4.1.5",
"webpack": "^4.35.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0",
"react-dom": "^16.8.0 || ^17.0.0"
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"husky": "^4.3.8",
"mitt": "^2.1.0",
"react-json-view": "^1.21.1"
},
"engines": {
"node": ">=10.16.0"
},
"files": [
"lib/",
"esm/",
"package.json",
"*.md",
"LICENSE"
],
"license": "MIT"
}