-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.77 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
{
"name": "@perimetre/nextjs-auth",
"version": "0.2.1",
"description": "Next.js SDK for signing in",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": "^10.13.0 || >=12.0.0"
},
"scripts": {
"prebuild": "npm run check-commit",
"build": "tsc -p tsconfig.build.json",
"prepare": "npm run build",
"upload": "npm publish --access public",
"prettier": "prettier --write \"{**/*.js,**/*.ts,**/*.tsx}\"",
"lint": "eslint . --ext js --ext jsx --ext ts --ext tsx",
"lint:fix": "npm run lint -- --fix",
"type-check": "tsc --noEmit",
"check-commit": "npm run type-check && npm run prettier && npm run lint:fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/perimetre/nextjs-auth.git"
},
"author": "Perimetre (https://perimetre.co/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/perimetre/nextjs-auth/issues"
},
"homepage": "https://github.com/perimetre/nextjs-auth#readme",
"dependencies": {
"@auth0/nextjs-auth0": "^0.16.0",
"chalk": "^4.1.0",
"jsonwebtoken": "^8.5.1",
"next": "^9.5.2",
"passport": "^0.4.1",
"passport-oauth2": "^1.5.0",
"passport-oauth2-refresh": "^2.0.0",
"typescript": "^4.0.2"
},
"devDependencies": {
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.6.1",
"@types/passport": "^1.0.4",
"@types/passport-oauth2": "^1.4.9",
"@types/passport-oauth2-refresh": "^1.1.1",
"@types/react": "^16.9.48",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jsdoc": "^30.3.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.1"
}
}