This repository has been archived by the owner on May 11, 2022. It is now read-only.
forked from auth0/nextjs-auth0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.59 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
101
{
"name": "@auth0/nextjs-auth0",
"version": "0.13.0",
"description": "Next.js SDK for signing in with Auth0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"browser": "dist/index.browser.js",
"directories": {
"test": "tests"
},
"engines": {
"node": "^10.13.0 || >=12.0.0"
},
"scripts": {
"clean": "rimraf dist",
"pretty": "prettier --write \"src/**/*.ts\" \"src/*.ts\"",
"lint": "eslint --fix --ext .ts ./src",
"build": "tsc -p tsconfig.build.json",
"test": "jest --coverage --forceExit --maxWorkers=10",
"test:watch": "jest --coverage --watch",
"prepublishOnly": "npm test && npm run lint",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/auth0/nextjs-auth0.git"
},
"keywords": [
"auth0",
"next.js",
"react",
"oidc",
"authentication",
"zeit"
],
"author": "Auth0 (https://auth0.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/auth0/nextjs-auth0/issues"
},
"homepage": "https://github.com/auth0/nextjs-auth0#readme",
"devDependencies": {
"@panva/jose": "^1.9.3",
"@types/cookie": "^0.3.3",
"@types/hapi__iron": "^5.1.0",
"@types/jest": "^25.2.1",
"@types/jsonwebtoken": "^8.3.9",
"@types/node": "^13.13.5",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/request": "^2.48.4",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"eslint": "^7.0.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.0.0",
"jest": "^25.2.1",
"next": "^9.3.6",
"nock": "^12.0.3",
"prettier": "^2.0.5",
"request": "^2.88.2",
"timekeeper": "^2.2.0",
"ts-jest": "^25.5.1",
"typescript": "^3.8.3"
},
"dependencies": {
"@hapi/iron": "^5.1.4",
"base64url": "^3.0.1",
"cookie": "^0.4.1",
"openid-client": "^3.15.0"
},
"peerDependencies": {
"next": "^9.0.0"
},
"jest": {
"testEnvironment": "node",
"rootDir": "./",
"moduleFileExtensions": [
"ts",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/tests/",
"./jest.config.js"
],
"coverageReporters": [
"lcov",
"text",
"text-summary"
],
"preset": "ts-jest"
}
}