-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
42 lines (42 loc) · 1.05 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
{
"name": "@matteo.collina/fastify-auth-mongo-jwt",
"version": "0.2.0",
"description": "Sample user-management (signup, login) with Fastify and JWT",
"main": "index.js",
"scripts": {
"mongo": "docker run -p 27017:27017 mongo:4.0.3",
"test": "standard --fix && tap test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcollina/fastify-auth-mongo-jwt.git"
},
"keywords": [
"fastify",
"mongo",
"jwt",
"auth",
"mongodb",
"signup",
"login"
],
"author": "Matteo Collina <hello@matteocollina.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mcollina/fastify-auth-mongo-jwt/issues"
},
"homepage": "https://github.com/mcollina/fastify-auth-mongo-jwt#readme",
"devDependencies": {
"fastify": "^2.4.1",
"fastify-plugin": "^1.6.0",
"mongo-clean": "^2.0.0",
"pre-commit": "^1.2.2",
"standard": "^12.0.1",
"tap": "^14.2.2"
},
"dependencies": {
"fastify-jwt": "^0.10.0",
"fastify-mongodb": "^1.0.1",
"secure-password": "^3.1.0"
}
}