-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
79 lines (79 loc) · 2.3 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-linkedin-login-oauth2",
"version": "2.0.1",
"description": "React component for Linked In Log In feature using OAuth 2.0",
"main": "build/index.js",
"module": "build/index.esm.js",
"files": [
"build",
"assets"
],
"scripts": {
"clean": "rimraf build",
"prebuild": "npm run clean",
"dev": "vite ./preview",
"build": "rollup -c",
"prepublishOnly": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"prettier": "prettier src --write",
"lint": "eslint src --fix",
"publish:local": "export BUILD_MODE=dev && npm publish --registry http://localhost:4873",
"publish:alpha": "npm publish --tag alpha",
"publish:latest": "npm publish"
},
"peerDependencies": {
"react": "16.x || 17.x || 18.x",
"react-dom": "16.x || 17.x || 18.x"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@babel/runtime": "^7.15.4",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@types/react": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"@vitejs/plugin-react": "^1.3.2",
"babel-loader": "^8.2.3",
"babel-preset-react-app": "^10.0.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react-hooks": "^4.2.1-alpha-9c8161ba8-20211028",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^4.3.1",
"rimraf": "^3.0.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"sass-loader": "^12.3.0",
"typescript": "^4.4.4",
"vite": "^2.9.14"
},
"author": "nvh95",
"homepage": "https://github.com/nvh95/react-linkedin-login-oauth2",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nvh95/react-linkedin-login-oauth2.git"
},
"bug": {
"url": "https://github.com/nvh95/react-linkedin-login-oauth2/issues"
},
"keywords": [
"react",
"linkedin",
"login",
"signin",
"oauth",
"oauth2",
"redirect"
]
}