This repository was archived by the owner on Jul 19, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.9 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.9 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
{
"version": "1.0.0",
"name": "gitcheese-api",
"dev-dependencies": {},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-preset-es2015": "^6.22.0",
"eslint": "^3.16.1",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.2",
"eslint-plugin-standard": "^2.0.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-clean": "^0.3.2",
"gulp-cli": "^1.2.2",
"gulp-eslint": "^3.0.1",
"gulp-if": "^2.0.2",
"gulp-install": "^0.6.0",
"gulp-token-replace": "^1.0.3",
"gulp-uglify": "^2.0.1"
},
"scripts": {
"build": "gulp",
"lint": "eslint . --ext js --ignore-path .gitignore",
"package-template": "aws cloudformation package --template-file dist/cloudformation/stack-template.json --output-template-file dist/cloudformation/stack-template-packaged.yaml --s3-bucket gitcheese-api-build-artifacts",
"deploy-dev": "aws cloudformation deploy --template-file dist/cloudformation/stack-template-packaged.yaml --stack-name githceese-api-$TRAVIS_BRANCH --region us-east-1 --capabilities CAPABILITY_IAM --parameter-overrides ProjectName=$PROJECT_NAME ServiceName=$SERVICE_NAME BranchName=$TRAVIS_BRANCH JWTSecret=$dev_JWT_SECRET GithubClientId=$dev_GITHUB_CLIENT_ID GithubClientSecret=$dev_GITHUB_CLIENT_SECRET StripeSecretKey=$dev_STRIPE_SECRET_KEY StripeApiUrl=$STRIPE_API_URL TokenCallbackUrl=$dev_TOKEN_CALLBACK_URL",
"deploy-master": "aws cloudformation deploy --template-file dist/cloudformation/stack-template-packaged.yaml --stack-name githceese-api-$TRAVIS_BRANCH --region us-east-1 --capabilities CAPABILITY_IAM --parameter-overrides ProjectName=$PROJECT_NAME ServiceName=$SERVICE_NAME BranchName=$TRAVIS_BRANCH JWTSecret=$master_JWT_SECRET GithubClientId=$master_GITHUB_CLIENT_ID GithubClientSecret=$master_GITHUB_CLIENT_SECRET StripeSecretKey=$master_STRIPE_SECRET_KEY StripeApiUrl=$STRIPE_API_URL TokenCallbackUrl=$master_TOKEN_CALLBACK_URL"
}
}