-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.05 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
39
{
"name": "aws-deploy-scripts",
"version": "2.1.0",
"description": "Collection of scripts to deploy ECS services and S3 static websites",
"repository": "https://github.com/bartimaeus/aws-deploy-scripts",
"author": "Eric Shelley <eric@webdesignbakery.com>",
"license": "MIT",
"keywords": [
"aws",
"deploy",
"ecs",
"s3"
],
"bin": {
"aws-ecs-build": "./ecs/build.js",
"aws-ecs-deploy": "./ecs/deploy.js",
"aws-parameter-store": "./ec2/parameter-store.js",
"aws-s3-deploy": "./s3/deploy.sh",
"aws-s3-secrets": "./s3/secrets.js"
},
"dependencies": {
"colors": "^1.2.3",
"commander": "^2.15.1",
"inquirer": "^5.2.0",
"lodash": "^4.17.10",
"touch": "^3.1.0"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"prettier": "^1.12.1"
}
}