-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 1 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
{
"name": "eventbrite-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 CACHE_EXPIRATION=$CACHE_EXPIRATION -e ORGANIZERS=$ORGANIZERS -e TOKEN=$TOKEN --npm --token $NOW_TOKEN) $INSTANCE_NAME --token=$NOW_TOKEN",
"dev": "micro-dev -p ${PORT:-4003}",
"scale": "now scale $INSTANCE_NAME.now.sh sfo 1 --token $NOW_TOKEN",
"start": "micro"
},
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"dotenv": "^8.0.0",
"got": "^9.6.0",
"memory-cache": "^0.2.0",
"micro": "^9.3.4",
"micro-cors": "^0.1.1"
},
"devDependencies": {
"babel-eslint": "^10.0.2",
"eslint": "^6.0.1",
"husky": "^3.0.0",
"micro-dev": "^3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/meetupjs-ar/eventbrite-api.git"
},
"husky": {
"hooks": {
"pre-commit": "eslint '**/*.js'"
}
}
}