-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.1 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.1 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
{
"name": "delete-old-s3-files",
"version": "1.0.0",
"description": "Delete AWS S3 objects that were created more than N days ago.",
"main": "index.js",
"type": "module",
"engines": {
"node": ">=14.15.0"
},
"scripts": {
"start": "npx tsc && node --require dotenv/config dist/index.js dotenv_config_path=.env",
"start:dev": "npx tsc && node --require dotenv/config dist/index.js dotenv_config_path=.env.dev",
"start:prod": "npx tsc && node --require dotenv/config dist/index.js dotenv_config_path=.env.prod",
"lint": "npx eslint ."
},
"author": "@mgustavocoder",
"license": "ISC",
"devDependencies": {
"@types/node": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0"
},
"dependencies": {
"aws-sdk": "^2.1018.0",
"dotenv": "^10.0.0",
"env-var": "^7.1.1",
"lodash.findindex": "^4.6.0",
"lodash.sortby": "^4.7.0"
}
}