-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.12 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
{
"name": "@joindeed/prisma-auth",
"version": "1.2.9",
"description": "Declarative Prisma Authorization layer",
"main": "dist/index.js",
"scripts": {
"clean": "rm -rf dist",
"test": "jest",
"test:cov": "jest --coverage",
"test:watch": "jest --watch",
"build": "yarn clean && tsc",
"rebuild-parser": "yarn tspegjs -o src/generated/parser.ts src/descriptionGrammar.pegjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joindeed/prisma-auth.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"Prisma",
"Authorization",
"GraphQL",
"middleware"
],
"author": "Deed Engineering",
"license": "ISC",
"bugs": {
"url": "https://github.com/joindeed/prisma-auth/issues"
},
"homepage": "https://github.com/joindeed/prisma-auth#readme",
"devDependencies": {
"@types/jest": "^27.0.2",
"graphql": "^15.6.1",
"graphql-middleware": "^6.1.10",
"jest": "^27.3.1",
"peggy": "^1.2.0",
"ts-jest": "^27.0.7",
"ts-pegjs": "^1.2.1",
"typescript": "^4.4.4"
},
"dependencies": {
"graphql-fields": "^2.0.3"
}
}