-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
31 lines (31 loc) · 1 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
{
"name": "awesome-devops-and-cd-ed4",
"version": "0.0.0-beta.0",
"description": "",
"private": true,
"scripts": {
"start": "node app/server.js",
"docker": "docker run -p 3000:80 -it awesome-devops-and-cd-ed4",
"docker:build": "docker build -t awesome-devops-and-cd-ed4 .",
"static": "docker run -p 4000:7000 -it awesome-devops-and-cd-ed4-static",
"static:build": "docker build -f Dockerfile.static -t awesome-devops-and-cd-ed4-static .",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ivoputzer/awesome-devops-and-cd-ed4.git"
},
"author": "Ivo von Putzer Reibegg <ivo.putzer@gmail.com> (https://github.com/ivoputzer)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ivoputzer/awesome-devops-and-cd-ed4/issues"
},
"homepage": "https://github.com/ivoputzer/awesome-devops-and-cd-ed4#readme",
"dependencies": {
"express": "^4.18.1",
"socket.io": "^2.3.0"
},
"devDependencies": {
"mocha": "^10.0.0"
}
}