-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.25 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
{
"name": "sleeptrip",
"version": "1.0.0",
"description": "Do you want to get a sleep while traveling in public transport, but afraid to oversleep? This app is for you :heart:",
"main": "index.js",
"scripts": {
"deploy": "now rm %npm_package_name% && now -e TWILIO_SID=@twilio-sid -e TWILIO_TOKEN=@twilio-token",
"dev": "micro-bot -e .env",
"start": "micro-bot -d ${NOW_URL} -t ${BOT_TOKEN}"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inikonorov/sleeptrip.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/inikonorov/sleeptrip/issues"
},
"homepage": "https://github.com/inikonorov/sleeptrip#readme",
"dependencies": {
"micro-bot": "^2.5.3",
"twilio": "^3.30.0"
},
"devDependencies": {
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --max-warnings=0 --fix",
"prettier --write",
"git add"
]
}
}