-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 1.22 KB
/
package.json
File metadata and controls
26 lines (26 loc) · 1.22 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
{
"name": "node-archetype",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint --ignore-path .gitignore .",
"test": "mocha",
"start": "node src",
"cloudformation": "bash ./scripts/create-stacks.sh",
"cloudformation-build": "aws cloudformation create-stack --stack-name node-app-codebuild-resources --template-body file://cloudformation-templates/code-build.yml --capabilities CAPABILITY_IAM --parameters file://cloudformation-templates/parameters.json",
"cloudformation-deploy": "aws cloudformation create-stack --stack-name node-app-codedeploy-resources --template-body file://cloudformation-templates/code-deploy.yml --capabilities CAPABILITY_IAM --parameters file://cloudformation-templates/parameters.json",
"cloudformation-pipeline": "aws cloudformation create-stack --stack-name node-pipeline-stack --template-body file://cloudformation-templates/codepipeline.yml --capabilities CAPABILITY_IAM --parameters file://cloudformation-templates/parameters.json"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"eslint": "^5.2.0",
"express": "^4.16.3"
},
"devDependencies": {
"chai": "^4.1.2",
"supertest": "^3.1.0"
}
}