-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.07 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
{
"name": "docker-test",
"version": "1.0.0",
"description": "Docker Test",
"main": "src/index.js",
"scripts": {
"debug": "DEBUG=true npm run dev",
"dev": "DEBUG=true nodemon src/index.js",
"docker:build": "docker build -t docker-test .",
"docker:login": "$(aws ecr get-login --no-include-email --region us-east-1 --profile parellin)",
"docker:push": "docker push x.dkr.ecr.us-east-1.amazonaws.com/docker-test:latest",
"docker:tag": "docker tag docker-test:latest x.dkr.ecr.us-east-1.amazonaws.com/docker-test:latest",
"lint": "eslint .",
"start": "node src/index.js",
"test": "mocha"
},
"author": "Parellin Technologies LLC",
"repository": {
"type": "git",
"url": "git+https://github.com/Parellin-Technologies-LLC/node-docker.git"
},
"license": "MIT",
"dependencies": {
"express": "4.16.4",
"gonfig": "1.0.9",
"http-response-class": "1.2.4",
"on-finished": "^2.3.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"chai": "4.2.0",
"chai-as-promised": "^7.1.1",
"chai-http": "4.2.1",
"eslint": "5.15.1",
"mocha": "^5.2.0",
"nodemon": "1.18.10"
}
}