forked from gladly-team/next-firebase-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.04 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
98
99
100
{
"name": "@3-shake/next-firebase-auth",
"version": "0.13.2-3shake.4",
"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": {
"type": "git",
"url": "git+https://github.com/3-shake/next-firebase-auth.git"
},
"author": "3-shake.com",
"scripts": {
"build": "npm-run-all -s build:clean build:src",
"build:clean": "rm -rf ./build",
"build:src": "NODE_ENV=production webpack",
"lint": "eslint ./",
"lint-fix": "eslint --fix ./",
"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"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.14.1",
"@babel/preset-react": "^7.12.10",
"@testing-library/react": "^11.2.2",
"@testing-library/react-hooks": "^5.1.2",
"@types/cookies": "^0.7.6",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-plugin-module-resolver": "^4.1.0",
"codecov": "^3.8.2",
"copy-webpack-plugin": "^8.1.1",
"core-js": "^3.12.0",
"eslint": "^7.25.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"firebase": "^8.5.0",
"firebase-admin": "^9.4.2",
"jest": "^26.6.3",
"jsdom": "^16.3.0",
"mockdate": "^3.0.2",
"moment": "^2.29.1",
"next": "^10.0.4",
"next-test-api-route-handler": "^1.1.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-test-renderer": "^17.0.1",
"regenerator-runtime": "^0.13.7",
"set-cookie-parser": "^2.4.6",
"typescript": "^4.2.4",
"webpack": "^5.11.1",
"webpack-bundle-analyzer": "^4.3.0",
"webpack-cli": "^4.7.0",
"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"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"files": [
"/build"
]
}