-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 1.62 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
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "fb-messenger-bot",
"version": "1.1.0",
"description": "Starter Bot Facebook Messenger",
"main": "server.js",
"scripts": {
"start": "nodemon --inspect=0.0.0.0:9228 ./server.js",
"heroku:envs": "bash heroku-envs.sh",
"build": "node -v",
"test": "node -v",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"keywords": [
"facebook",
"messenger",
"workplace",
"bot",
"node"
],
"author": "Maximiliano \"Mex\" Delgado <[email protected]>",
"license": "MIT",
"dependencies": {
"babel-plugin-idx": "^2.4.0",
"body-parser": "^1.18.3",
"config": "^3.0.1",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"crypto-js": "^4.0.0",
"express": "^4.16.4",
"idx": "^2.5.6",
"node-uuid": "^1.4.8",
"nodemon": "^1.19.4",
"request": "^2.88.2",
"signale-logger": "^1.5.0",
"swagger-jsdoc": "^3.2.9",
"swagger-ui-express": "^4.0.2"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.9.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"prettier": "^2.1.0"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"signale-logger": {
"displayFilename": true,
"displayTimestamp": true,
"displayDate": true,
"displayLine": true,
"timeZone": "America/Argentina/Buenos_Aires",
"formatDate": "YYYY-MM-DD",
"formatTime": "HH:mm:ss a"
},
"engines": {
"node": "10.x"
}
}