This repository has been archived by the owner on Aug 26, 2022. It is now read-only.
forked from gladly-team/next-firebase-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.06 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
95
96
97
{
"name": "@behive-inc/next-firebase-auth",
"version": "0.13.4-alpha.0",
"description": "Simple Firebase authentication for all Next.js rendering strategies",
"keywords": [
"Next",
"Next.js",
"Firebase",
"authentication",
"ssr",
"token"
],
"browser": "build/index.browser.js",
"main": "build/index.node.js",
"types": "build/index.d.ts",
"repository": "[email protected]:gladly-team/next-firebase-auth.git",
"author": "Gladly Team",
"license": "MIT",
"scripts": {
"build": "npm-run-all -s build:clean build:src",
"build:clean": "rm -rf ./build",
"build:src": "cross-env NODE_ENV=production webpack",
"lint": "eslint ./",
"test": "npm-run-all -s install-example-deps lint test:coverage",
"test:run": "jest --env=jsdom",
"test:coverage": "yarn run test:run --coverage",
"test:watch": "yarn run test:run --watch",
"install-example-deps": "cd example && yarn",
"dev:publish": "npm-run-all -s build dev:yalc-publish-push",
"dev:yalc-publish-push": "yalc publish --push",
"analyze-bundle": "WEBPACK_ANALYZE_BUNDLE=true yarn run build",
"version:canary": "yarn version --prerelease --preid=canary"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"cross-env": "^7.0.3",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.9",
"@babel/preset-react": "^7.14.5",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.1",
"@types/cookies": "^0.7.7",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"babel-jest": "^27.0.6",
"babel-loader": "^8.2.2",
"babel-plugin-module-resolver": "^4.1.0",
"codecov": "^3.8.3",
"copy-webpack-plugin": "^9.0.1",
"core-js": "^3.16.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"firebase": "^8.8.1",
"firebase-admin": "^9.11.0",
"jest": "^27.0.6",
"jsdom": "^16.7.0",
"mockdate": "^3.0.2",
"moment": "^2.29.1",
"next": "^11.0.1",
"next-test-api-route-handler": "^2.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-test-renderer": "^17.0.1",
"regenerator-runtime": "^0.13.9",
"set-cookie-parser": "^2.4.6",
"typescript": "^4.3.5",
"webpack": "^5.48.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.2",
"webpack-node-externals": "^3.0.0"
},
"peerDependencies": {
"firebase": ">=7.0.0 <9",
"firebase-admin": "^9.0.0",
"next": ">=9.5.0 <12",
"react": ">=16.8.0 <18",
"react-dom": ">=16.8.0 <18"
},
"dependencies": {
"cookies": "^0.8.0",
"hoist-non-react-statics": "^3.3.2"
},
"files": [
"/build"
]
}