-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.28 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": "@uscreen.de/fastify-mongo-auth",
"version": "1.1.0",
"description": "Stateless session backed by authentication against mongodb collection",
"main": "index.js",
"type": "module",
"homepage": "https://github.com/uscreen/fastify-mongo-auth",
"repository": {
"type": "git",
"url": "git+https://github.com/uscreen/fastify-mongo-auth.git"
},
"author": {
"name": "Marcus Spiegel",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@fastify/mongodb": "^6.1.0",
"@fastify/sensible": "^5.1.1",
"@uscreen.de/dev-service": "^0.12.3",
"@uscreen.de/eslint-config-prettystandard-node": "^0.2.11",
"@uscreen.de/fastify-mongo-crud": "^1.0.0-1",
"c8": "^8.0.0",
"fastify": "^4.13.0",
"husky": ">=8.0.2",
"lint-staged": ">=13.1.2",
"tap": "^16.3.4"
},
"dependencies": {
"@fastify/secure-session": "^7.0.0",
"env-schema": "^5.1.1",
"fastify-plugin": "^4.5.0",
"secure-password": "^4.0.0"
},
"scripts": {
"lint": "eslint '**/*.js' --fix",
"test": "c8 tap",
"test:cov": "c8 --reporter=html --reporter=text tap",
"test:ci": "c8 --reporter=lcovonly tap",
"prepare": "husky install"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"services": [
"mongo"
]
}