-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 1.04 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
{
"name": "calendar-api",
"version": "1.1.0",
"main": "index.js",
"scripts": {
"clean-deploys": "now rm $INSTANCE_NAME --safe --token $NOW_TOKEN --yes",
"deploy": "now alias $(now --name $INSTANCE_NAME -e EVENTBRITE_API=$EVENTBRITE_API -e MEETUP_API=$MEETUP_API -e SPREADSHEET_API=$SPREADSHEET_API --npm --token $NOW_TOKEN) $INSTANCE_NAME --token=$NOW_TOKEN",
"dev": "micro-dev -p ${PORT:-4000}",
"scale": "now scale $INSTANCE_NAME.now.sh sfo 1 --token $NOW_TOKEN",
"start": "micro"
},
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"color-hash": "^1.0.3",
"dotenv": "^8.0.0",
"got": "^9.6.0",
"micro": "^9.3.4",
"micro-cors": "^0.1.1",
"moment": "^2.24.0"
},
"devDependencies": {
"babel-eslint": "^10.0.2",
"eslint": "^6.0.1",
"husky": "^3.0.0",
"micro-dev": "^3.0.0"
},
"husky": {
"hooks": {
"pre-commit": "eslint '**/*.js'"
}
}
}