-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.22 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
{
"name": "google-spreadsheet-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 SPREADSHEET_ID=$SPREADSHEET_ID -e WORKSHEET_ID=$WORKSHEET_ID --npm --token $NOW_TOKEN) $INSTANCE_NAME --token=$NOW_TOKEN",
"dev": "micro-dev -p ${PORT:-4001}",
"scale": "now scale $INSTANCE_NAME.now.sh sfo 1 --token $NOW_TOKEN",
"start": "micro"
},
"author": "durancristhian@gmail.com",
"license": "MIT",
"dependencies": {
"dotenv": "^8.0.0",
"gsheets": "^2.0.0",
"isomorphic-fetch": "^2.2.1",
"memory-cache": "^0.2.0",
"micro": "^9.3.4",
"micro-cors": "^0.1.1",
"moment-msdate": "^2.0.4"
},
"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/google-spreadsheet-api.git"
},
"husky": {
"hooks": {
"pre-commit": "eslint '**/*.js'"
}
}
}