-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 892 Bytes
/
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
{
"name": "moleculer-mysql-template",
"version": "2.0.0",
"description": "Moleculer-MySQL Adapter with authentication",
"private": true,
"scripts": {
"start": "node ./index.js"
},
"keywords": [
"microservices",
"moleculer",
"moleculer-web",
"mysql",
"jsonwebtoken",
"authentication"
],
"repository": {
"type": "git",
"url": "git@github.com:AGenson/moleculer-mysql-template.git"
},
"homepage": "https://github.com/AGenson/moleculer-mysql-template#README",
"author": "Anthony Genson",
"devDependencies": {
"moleculer-repl": "^0.3.0"
},
"dependencies": {
"jsonwebtoken": "^8.2.1",
"moleculer": "^0.11.0",
"moleculer-db": "^0.7.0",
"moleculer-db-adapter-sequelize": "^0.1.5",
"moleculer-web": "^0.6.0",
"mysql2": "^1.5.2",
"password-hash": "^1.2.2"
},
"engines": {
"node": ">= 6.x.x"
}
}