forked from odyssoft/react-facebook-login
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.49 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
{
"name": "@odyssoft/react-facebook-login",
"version": "1.0.4",
"description": "React facebook login button with types",
"main": "lib/index.js",
"module": "lib/index.es.js",
"jsnext:main": "lib/index.es.js",
"scripts": {
"lint": "standard",
"build": "rm -rf ./lib && tsc",
"test": "jest",
"test-with-coverage": "jest --coverage",
"storybook": "start-storybook -p 6006",
"format": "prettier-standard --format",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/odyssoft/react-facebook-login.git"
},
"keywords": [
"react",
"facebook",
"login",
"auth",
"typescript",
"facebook-login",
"react-facebook-login"
],
"author": "Sean Hewitson",
"license": "ISC",
"bugs": {
"url": "https://github.com/odyssoft/react-facebook-login/issues"
},
"homepage": "https://github.com/odyssoft/react-facebook-login#readme",
"devDependencies": {
"@babel/core": "^7.17.9",
"@storybook/addon-a11y": "^6.3.9",
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/addon-links": "^6.4.9",
"@storybook/addon-storysource": "^6.3.9",
"@storybook/builder-webpack5": "^6.4.19",
"@storybook/manager-webpack5": "^6.4.19",
"@storybook/react": "^6.4.9",
"@storybook/testing-library": "^0.0.9",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.0.0",
"@types/jest": "^27.4.1",
"@types/react": "^18.0.1",
"@types/react-dom": "^18.0.0",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.2.4",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-storybook": "^0.5.8",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"rollup": "^2.70.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.31.2",
"standard": "^16.0.4",
"standard-prettier": "^1.0.1",
"storybook-dark-mode": "^1.0.9",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"peerDependencies": {
"@nextui-org/react": "^1.0.8-beta.12",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"dependencies": {
"@nextui-org/react": "^1.0.0-beta.12"
}
}