forked from michaeljscript/react-social-login-buttons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.93 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
{
"name": "react-social-login-buttons",
"version": "3.1.0",
"description": "Simple social login buttons for React",
"main": "./dist/index.js",
"types": "./src/types.d.ts",
"scripts": {
"test": "jest",
"test:lint": "eslint src stories",
"build": "npm run webpack",
"build-watch": "nodemon --exec \"npm run build\" --ignore lib/*",
"example-watch": "nodemon --exec \"npm run example\" --ignore lib/*",
"format": "eslint src stories --fix",
"storybook": "start-storybook -p 9001 -c .storybook",
"webpack": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MichalSzorad/react-social-login-buttons.git"
},
"keywords": [
"react",
"social",
"login",
"buttons",
"facebook",
"google",
"react-social-login-buttons"
],
"author": "Michal Szorad, [email protected]",
"best-phrase": "undefined is not defined",
"about": "This is my first library, please be nice to me",
"license": "ISC",
"bugs": {
"url": "https://github.com/MichalSzorad/react-social-login-buttons/issues"
},
"homepage": "https://github.com/MichalSzorad/react-social-login-buttons#readme",
"dependencies": {},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/preset-stage-1": "^7.8.3",
"@storybook/react": "^5.3.18",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^7.0.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-react": "^7.19.0",
"jest": "^26.0.1",
"nodemon": "^2.0.3",
"prettier-eslint-cli": "^5.0.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}