1
0
This repository has been archived on 2018-04-23. You can view files and clone it, but cannot push or open issues or pull requests.
Files
vodopija-bot/package.json

53 lines
1.0 KiB
JSON

{
"private": true,
"name": "vodopija-bot",
"version": "0.0.1",
"scripts": {
"dev": "npx nodemon --inspect .",
"predev": "npx check-env PORT FB_APP_SECRET FB_ACCESS_TOKEN FB_VERIFY_TOKEN"
},
"dependencies": {
"claudia-bot-builder": "4.0.0",
"micro": "9.1.4",
"microrouter": "3.1.2"
},
"devDependencies": {
"check-env": "1.3.0",
"eslint-plugin-prettier": "2.6.0",
"ngrok": "3.0.1",
"nodemon": "1.17.3",
"prettier": "1.12.1",
"xo": "0.20.3"
},
"prettier": {
"arrowParens": "avoid",
"bracketSpacing": false,
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"xo": {
"fix": true,
"prettier": true,
"semicolon": false,
"space": 2,
"rules": {
"comma-dangle": [
"error",
"only-multiline"
],
"operator-linebreak": [
"error",
"after",
{
"overrides": {
"?": "ignore",
":": "ignore"
}
}
]
}
}
}