-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.46 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.46 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "cloudwatch-public-metrics",
"version": "0.1.0",
"description": "Expose AWS Cloudwatch Metrics to public using AWS Lambda and server-side rendering for free.",
"main": "src/server.js",
"dependencies": {
"express": "^4.16.3",
"lodash": "^4.17.5",
"luxon": "^1.2.0",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"serverless-http": "^1.5.5",
"serverless-offline": "^3.18.0",
"styled-components": "^3.2.5",
"victory": "^0.26.0"
},
"devDependencies": {
"aws-sdk": "^2.219.1",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"nodemon": "^1.17.3",
"react-universal-component": "^2.8.4",
"webpack": "^3.8.1",
"webpack-node-externals": "^1.2.0"
},
"scripts": {
"start": "node ./dist/server",
"build": "rm -fr dist && webpack",
"deploy": "npm run build && sls deploy",
"offline": "serverless offline;",
"dev": "AWS_REGION=us-east-1 npm run build && npm run offline",
"watch": "nodemon"
},
"author": {
"name": "Rafal Wilinski",
"email": "raf.wilinski@gmail.com",
"url": "https://github.com/RafalWilinski/"
},
"repository": {
"type": "git",
"url": "https://github.com/RafalWilinski/cloudwatch-public-metrics.git"
},
"license": "MIT",
"engines": {
"node": ">= 4"
}
}