forked from gladly-team/next-firebase-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.98 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
{
"name": "next-firebase-auth",
"version": "0.14.1",
"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": "NODE_ENV=production webpack",
"lint": "eslint ./",
"prettier": "prettier",
"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.16.0",
"@babel/core": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@types/cookies": "^0.7.7",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"babel-jest": "^27.4.4",
"babel-loader": "^8.2.3",
"babel-plugin-module-resolver": "^4.1.0",
"copy-webpack-plugin": "^10.1.0",
"core-js": "^3.19.3",
"eslint": "^8.4.1",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"firebase": "^8.8.1",
"firebase-admin": "^10.0.0",
"jest": "^27.4.4",
"mockdate": "^3.0.2",
"moment": "^2.29.1",
"next": "^12.0.7",
"next-test-api-route-handler": "^2.3.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"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.5.3",
"webpack": "^5.65.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.1",
"webpack-node-externals": "^3.0.0"
},
"peerDependencies": {
"firebase": ">=7.0.0 <9",
"firebase-admin": ">=9.0.0 <11",
"next": ">=9.5.0 <13",
"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"
]
}