-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.05 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
{
"name": "@kurier/addon-nextjs-auth0",
"version": "0.0.1",
"description": "Integrates authorization mechanisms provided by nextjs-auth0 into Kurier.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/kurierjs/kurier-addon-nextjs-auth0"
},
"author": "Joel A. Villarreal Bertoldi <[email protected]>",
"bugs": {
"url": "https://github.com/kurierjs/kurier-addon-nextjs-auth0/issues"
},
"homepage": "https://github.com/kurierjs/kurier-addon-nextjs-auth0#readme",
"license": "MIT",
"scripts": {
"build": "rm -rf dist/ && tsc -b",
"prepublishOnly": "rm -rf dist/ && tsc -b",
"prepare": "install-peers"
},
"peerDependencies": {
"@auth0/nextjs-auth0": "^1.4.0",
"kurier": "^1.1.0"
},
"devDependencies": {
"install-peers-cli": "^2.2.0",
"prettier": "^2.1.2",
"tslint": "^6.1.3",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.3.4"
}
}