-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 883 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
30
{
"name": "cdk-docker-pipeline-example",
"version": "1.0.0",
"description": "Project demonstrating deployment of a docker app with CDK Pipelines",
"main": "index.js",
"scripts": {
"start": "npx ts-node src/index.ts",
"build": "tsc",
"clean": "rm -rf ./dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kbanman/cdk-docker-pipeline-example.git"
},
"author": "Kelly Banman <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/kbanman/cdk-docker-pipeline-example/issues"
},
"homepage": "https://github.com/kbanman/cdk-docker-pipeline-example#readme",
"dependencies": {
"express": "^4.17.1"
},
"devDependencies": {
"@types/express": "^4.17.7",
"@types/node": "^14.0.27",
"typescript": "^3.9.7"
}
}