-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.07 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
{
"name": "@myfunc/prisma-transactional",
"version": "0.3.0",
"author": "myfunc",
"description": "Decorator that wraps all prisma queries along the whole call stack to a single transaction.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/myfunc/prisma-transactional.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"prisma",
"@prisma/client",
"nest",
"nestjs",
"extension",
"transactional",
"transaction",
"prisma-transactional",
"prisma-transaction"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"postpublish": "sh ./snyk.monitor.sh"
},
"peerDependencies": {
"@prisma/client": ">=5.0.0",
"nestjs-cls": "^4.3.0"
},
"devDependencies": {
"@prisma/client": ">=5.0.0",
"@types/node": "^20.12.11",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"eslint": "^8.57.0",
"eslint-plugin-local": "^4.2.2",
"prisma": "latest",
"typescript": "4.9.4"
}
}