forked from keppelen/react-facebook-login
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.84 KB
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
{
"name": "react-fb-login-component",
"version": "1.0.1",
"description": "A Component React for Facebook Login",
"main": "dist/facebook-login-with-button.js",
"private": false,
"release": {
"branches": [
"master",
"next"
]
},
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "cross-env NODE_ENV=development webpack --config webpack.config.js",
"bundle": "cross-env NODE_ENV=production webpack --config webpack.config.dist.js",
"test": "node_modules/.bin/eslint src/**/*.js",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/jv18creator/react-fb-login-component.git"
},
"keywords": [
"react",
"reactjs",
"react-component",
"facebook-login",
"react-facebook-login"
],
"author": "Jeet Viramgama <jviramgama5@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/jv18creator/react-fb-login-component/issues"
},
"files": [
"dist/**/*"
],
"homepage": "https://github.com/jv18creator/react-fb-login-component",
"devDependencies": {
"@babel/core": "^7.22.11",
"@babel/preset-env": "^7.22.14",
"@babel/preset-react": "^7.22.5",
"babel": "^6.5.2",
"babel-loader": "^9.1.3",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.24.1",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"prop-types": "^15.5.10",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router": "^6.15.0",
"react-router-dom": "^6.15.0",
"sass": "^1.66.1",
"sass-loader": "^13.3.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "4.15.1",
"semantic-release": "^21.1.1"
},
"peerDependencies": {
"react": "16 - 18",
"react-dom": "16 - 18"
}
}