-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
29 lines (29 loc) · 880 Bytes
/
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
{
"name": "cloudfront-standard-logs-insights",
"version": "1.0.0",
"description": "Web application to get insights to CloudFront standard logs stored in S3",
"main": "app.js",
"private": true,
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"prettier": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/rucub100/cloudfront-standard-logs-insights.git"
},
"author": "Ruslan Curbanov",
"license": "MIT",
"bugs": {
"url": "https://github.com/rucub100/cloudfront-standard-logs-insights/issues"
},
"homepage": "https://github.com/rucub100/cloudfront-standard-logs-insights#readme",
"dependencies": {
"express": "^4.17.1"
},
"devDependencies": {
"nodemon": "^2.0.15",
"prettier": "^2.5.1"
}
}