-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.22 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
{
"name": "nact-persistence-mongodb",
"version": "0.2.0",
"repository": "https://github.com/tonyfromundefined/nact-persistence-mongodb",
"license": "MIT",
"exports": {
".": {
"types": "./lib/index.d.ts",
"require": "./lib/index.js",
"import": "./lib/index.mjs"
},
"./package.json": "./package.json"
},
"main": "./lib/index.js",
"files": [
"lib",
"src",
"README.md"
],
"scripts": {
"build": "nanobundle build",
"clean": "rimraf ./lib"
},
"resolutions": {
"nact@^7.6.2": "patch:nact@npm%3A7.6.2#./.yarn/patches/nact-npm-7.6.2-9ad34dcf44.patch"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"mongodb": "^4.13.0",
"nact": "^7.6.2",
"nanobundle": "^1.1.0",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"typescript": "^4.9.4"
},
"peerDependencies": {
"mongodb": "^4.13.0",
"nact": "^7.6.2"
},
"packageManager": "[email protected]"
}