-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
78 lines (78 loc) · 1.96 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "cached-prisma",
"description": "A Prisma client abstraction that simplifies caching.",
"version": "1.4.0",
"repository": "https://github.com/joellefkowitz/cached-prisma",
"homepage": "https://cached-prisma.readthedocs.io",
"license": "MIT",
"author": "Joel Lefkowitz",
"main": "dist/index.js",
"files": [
"dist"
],
"keywords": [
"prisma",
"caching",
"memcached",
"redis"
],
"packageManager": "[email protected]",
"metadata": {
"publisher": "npm",
"languages": [
"TypeScript"
],
"frameworks": [
"Prisma"
],
"paradigms": [
"Object oriented"
],
"lifecycle": "Alpha"
},
"scripts": {
"postinstall": "husky",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"lint": "cspell . --dot --gitignore && eslint . --fix && tsc --noEmit && trufflehog3",
"format": "prettier . --write",
"build": "tsc",
"test": "jest",
"docs": "typedoc --options docs/typedoc/typedoc.json && ts-node ./docs/typedoc/assets.ts"
},
"resolutions": {
"cliui": "^8.0.1",
"strip-ansi": "^6.0.1"
},
"dependencies": {
"@prisma/client": "^5.9.1",
"collections": "^5.1.12",
"ioredis": "^5.4.1",
"memcached": "^2.2.2",
"prisma": "^5.9.1"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/ioredis": "^5.0.0",
"@types/jest": "29.0.0",
"@types/memcached": "^2.2.10",
"@types/node": "^18.11.0",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"cspell": "^8.0.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"husky": "^9.0.0",
"jest": "^29.0.0",
"pinst": "^3.0.0",
"prettier": "^3.0.0",
"prettier-plugin-jsdoc": "^1.3.0",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.2",
"tslib": "^2.3.0",
"typedoc": "^0.25.7",
"typedoc-material-theme": "^1.0.2",
"typescript": "~5.3.0"
}
}