-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.41 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
{
"name": "taskerbot",
"version": "1.1.0",
"description": "bot for tasker #RGB",
"main": "index.js",
"scripts": {
"build": "rollup -c rollup.config.js",
"start": "node server",
"nowls": "now ls taskerbot | tail -n +6 | tr -s ' ' | cut -d ' ' -f 2",
"now": "now --public",
"postnow": "now alias && now rm -y $(npm run nowls --silent)",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Muhammad Hasby",
"license": "ISC",
"dependencies": {
"@koa/cors": "^2.2.1",
"cachegoose": "^5.0.0",
"date-fns": "^1.29.0",
"koa": "^2.5.0",
"koa-bodyparser": "^4.2.0",
"koa-mount": "^3.0.0",
"koa-route": "^3.2.0",
"koa-send": "^4.1.3",
"koa-static": "^4.0.2",
"moment": "^2.21.0",
"mongoose": "^5.0.11",
"node-telegram-bot-api": "^0.30.0"
},
"now": {
"alias": "rgb-task",
"dotenv": true
},
"eslintConfig": {
"extends": "bentinata"
},
"devDependencies": {
"dotenv": "^5.0.1",
"eslint": "^4.19.1",
"eslint-config-bentinata": "^2.1.1",
"eslint-plugin-lodash": "^2.7.0",
"eslint-plugin-lodash-fp": "^2.1.3",
"eslint-plugin-promise": "^3.7.0",
"pino": "^4.15.0",
"prettier": "^1.11.1",
"rollup": "^0.57.1",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-less": "^0.1.4",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-uglify": "^3.0.0",
"wherr": "^1.0.0"
}
}