-
Notifications
You must be signed in to change notification settings - Fork 142
/
package.json
94 lines (94 loc) · 2.72 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
{
"name": "react-social-login",
"version": "3.4.15",
"description": "React Component for Login via Social Providers",
"main": "dist/social-login.js",
"files": [
"dist"
],
"engines": {
"node": ">=6.9.4"
},
"types": "dist/types/index.d.ts",
"scripts": {
"lint": "eslint src",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run lint && webpack && cp -r types dist/",
"build:demo": "npm run lint && cd demo && webpack && cd ..",
"start": "bnr start",
"start:insecure": "bnr start:insecure",
"start:old": "cd demo.old && webpack-dev-server --progress --colors && cd ..",
"deploy": "bash \"deploy.sh\""
},
"betterScripts": {
"start": {
"command": "cd demo && webpack-dev-server --https --progress && cd ..",
"env": {
"NODE_ENV": "development",
"FB_APP_ID": "657319568198782",
"INSTAGRAM_REDIRECT": "https://localhost:8080"
}
},
"start:insecure": {
"command": "cd demo && webpack-dev-server --progress --colors && cd ..",
"env": {
"NODE_ENV": "development",
"FB_APP_ID": "657319568198782",
"INSTAGRAM_REDIRECT": "https://localhost:8080"
}
}
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/deepakaggarwal7/react-social-login.git"
},
"keywords": [
"social",
"oauth"
],
"author": "Deepak Aggarwal <deepakaggarwal7@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/deepakaggarwal7/react-social-login/issues"
},
"homepage": "https://github.com/deepakaggarwal7/react-social-login#readme",
"peerDependencies": {
"react": "^16 || ^17"
},
"dependencies": {
"fetch-jsonp": "1.1.3",
"prop-types": "15.7.2",
"react": "^16.13.1",
"uuid": "3.1.0",
"webpack-cli": "^4.10.0",
"whatwg-fetch": "2.0.3"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-eslint": "8.0.2",
"babel-loader": "7.1.2",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-inline-environment-variables": "0.2.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-env": "1.6.1",
"babel-preset-react": "6.24.1",
"better-npm-run": "0.1.0",
"clean-webpack-plugin": "^3.0.0",
"eslint": "4.18.2",
"eslint-config-standard": "10.2.1",
"eslint-config-standard-jsx": "4.0.2",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-node": "5.2.1",
"eslint-plugin-promise": "3.6.0",
"eslint-plugin-react": "7.4.0",
"eslint-plugin-standard": "3.0.1",
"html-webpack-plugin": "^3.0.0",
"pre-commit": "1.2.2",
"react-dom": "16.1.0",
"webpack": "4.37.0",
"webpack-dev-server": "4.11.1"
}
}