-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.37 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
{
"name": "nexus-plugin-auth0",
"version": "0.0.0-dripip",
"main": "dist/index.js",
"module": "dist/nexus-plugin-auth0.esm.js",
"description": "A Nexus framework plugin",
"repository": "[email protected]:graphql-nexus/plugin-auth0.git",
"author": "Prisma",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"format": "prettier --write .",
"dev": "tsc --build --watch",
"build:doc": "doctoc README.md --notitle",
"build:ts": "tsc",
"build": "yarn -s build:ts && yarn -s build:doc",
"test": "jest",
"clean": "rm -rf dist",
"publish:stable": "dripip stable",
"publish:preview": "dripip preview",
"publish:pr": "dripip pr",
"prepublishOnly": "yarn -s build"
},
"prettier": "@prisma-labs/prettier-config",
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
]
},
"devDependencies": {
"@prisma-labs/prettier-config": "0.1.0",
"@types/async": "3.2.3",
"@types/jsonwebtoken": "8.5.0",
"@types/node": "14.14.2",
"@types/jest": "26.0.15",
"doctoc": "1.4.0",
"dripip": "0.10.0",
"nexus": "0.30.1",
"jest": "26.6.0",
"jest-watch-typeahead": "0.6.1",
"prettier": "2.1.2",
"ts-jest": "26.4.1",
"typescript": "3.9.7"
},
"dependencies": {
"jwks-rsa": "^1.8.1"
}
}