-
-
Notifications
You must be signed in to change notification settings - Fork 142
/
Copy pathpackage.json
49 lines (49 loc) · 1.34 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
{
"name": "@accounts/mongo",
"version": "0.34.1",
"description": "MongoDB adaptor for accounts",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"clean": "yarn run -T rimraf lib",
"start": "yarn run -T tsc --watch",
"precompile": "yarn run clean",
"compile": "yarn run -T tsc",
"prepublishOnly": "yarn run compile",
"testonly": "yarn run -T jest --runInBand --forceExit",
"test:watch": "yarn run -T jest --watch",
"coverage": "yarn run testonly --coverage"
},
"files": [
"src",
"lib"
],
"jest": {
"testEnvironment": "node",
"preset": "ts-jest"
},
"repository": {
"type": "git",
"url": "https://github.com/accounts-js/accounts/tree/master/packages/database-mongo"
},
"author": "Leo Pradel",
"license": "MIT",
"peerDependencies": {
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0",
"graphql-modules": "^3.0.0",
"mongodb": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0"
},
"dependencies": {
"@accounts/mongo-magic-link": "^0.1.1",
"@accounts/mongo-password": "^0.33.0",
"@accounts/mongo-sessions": "^0.34.0",
"tslib": "2.6.2"
},
"devDependencies": {
"@accounts/database-tests": "^0.32.2",
"@accounts/types": "^0.33.1",
"graphql": "16.8.1",
"graphql-modules": "3.0.0-alpha-20231106133212-0b04b56e",
"mongodb": "6.4.0"
}
}