-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 1.84 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
79
80
81
82
83
84
{
"name": "prisma-cache-nosql",
"version": "0.0.0-development",
"description": "",
"type": "module",
"main": "./dist/index.js",
"scripts": {
"test:generate-client": "prisma generate --schema ./tests/prisma/schema.prisma",
"test:push-schema": "prisma db push --schema ./tests/prisma/schema.prisma",
"build": "rollup -c",
"test": "vitest",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"commit": "git-cz",
"publish": "npx semantic-release",
"semantic-release": "semantic-release"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"author": "BearToCode",
"license": "MIT",
"peerDependencies": {
"prisma": "^5.7.0"
},
"optionalDependencies": {
"acebase": "^1.29.5"
},
"devDependencies": {
"@prisma/client": "^5.7.0",
"@rollup/plugin-typescript": "^11.1.5",
"@types/node": "^20.10.4",
"@types/object-hash": "^3.0.6",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"acebase": "^1.29.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.56.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"prisma": "^5.7.0",
"rollup": "^4.9.1",
"rollup-plugin-dts": "^6.1.0",
"semantic-release": "^22.0.12",
"typescript": "^5.3.3",
"vitest": "^1.0.4"
},
"dependencies": {
"chalk": "^5.3.0",
"object-hash": "^3.0.0"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"**/*.{json,css,md}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/BearToCode/prisma-cache-nosql.git"
},
"keywords": [
"prisma",
"cache",
"nosql",
"acebase"
]
}