-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.43 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
50
51
52
53
54
{
"name": "@cesarbr/knot-cloud-authenticator",
"version": "1.4.1",
"description": "KNoT Cloud authenticator",
"repository": {
"type": "git",
"url": "git+https://github.com/CESARBR/knot-cloud-authenticator.git"
},
"main": "./build/index.js",
"author": "KNoT",
"license": "MIT",
"scripts": {
"lint": "eslint .",
"build": "babel src --out-dir build",
"start": "node build",
"start:watch": "nodemon --exec babel-node src",
"start:debug": "babel-node debug src"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel-plugin-module-resolver": "^3.2.0",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-import-resolver-babel-module": "^5.1.0",
"eslint-plugin-import": "^2.17.3",
"nodemon": "^1.18.6",
"pre-commit": "^1.2.2"
},
"dependencies": {
"@cesarbr/meshblu-authenticator-core": "^4.1.3",
"@cesarbr/meshblu-http": "^10.2.4",
"aws-sdk": "^2.422.0",
"bcrypt": "^3.0.2",
"boom": "^7.2.2",
"config": "^2.0.1",
"good": "^8.1.1",
"hapi": "^17.6.0",
"hapi-and-healthy": "^7.0.3",
"hapi-good-winston": "^2.1.0",
"joi": "^14.1.0",
"lodash": "^4.17.13",
"mailgun-js": "^0.22.0",
"moment": "^2.22.2",
"password-validator": "^4.1.1",
"uuid": "^3.3.2",
"winston": "^3.1.0"
},
"pre-commit": [
"lint"
]
}