-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.01 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.01 KB
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
{
"name": "twc-express-lambda",
"version": "0.0.1",
"description": "Express server for Tile Layers to use in ArcGIS Online",
"main": "index.js",
"dependencies": {
"aws-serverless-express": "^3.0.2",
"config": "^1.26.2",
"express": "^4.16.1",
"node-schedule": "^1.2.5",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"request-promise-native": "^1.0.5"
},
"devDependencies": {
"eslint": "^4.7.2",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"lambda-create": "claudia create --handler lambda.handler --deploy-proxy-api --region us-east-1 --set-env DEPLOY=export --profile claudia",
"lambda-update": "claudia update --profile claudia --set-env DEPLOY=export"
},
"author": "Adam Pfister",
"license": "Apache-2.0"
}