-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 1.07 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
{
"name": "authbot",
"version": "0.0.1",
"description": "A service to enable web auth and login to a custom domain facilitated via a Telegram bot.",
"main": "index.js",
"scripts": {
"lint": "eslint --cache src",
"development": "NODE_ENV=development node --harmony index.js",
"test": "NODE_ENV=test node --harmony index.js",
"tmp": "NODE_ENV=development node --harmony tmp/index.js",
"start": "node --harmony index.js",
"pm2start": "pm2 start index.js --node-args='--harmony' --name `basename $PWD`"
},
"author": "Evan Summers",
"license": "ISC",
"dependencies": {
"bluebird": "^3.4.6",
"koa": "^2.0.0",
"koa-bodyparser": "^4.3.0",
"koa-router": "^7.0.1",
"lodash": "^4.17.15",
"node-fetch": "^3.2.0",
"redis": "^4.0.2",
"winston": "^2.3.0"
},
"devDependencies": {
"eslint": "^8.7.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evanx/authbot.git"
},
"bugs": {
"url": "https://github.com/evanx/authbot/issues"
},
"homepage": "https://github.com/evanx/authbot#readme"
}