-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.17 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
{
"name": "hello-world",
"version": "1.0.0",
"description": "",
"main": "out/index.js",
"scripts": {
"start:tsc": "npx tsc -w",
"start:server": "npx nodemon out/index.js",
"start": "npx concurrently \"npm run start:tsc\" \"npm run start:server\"",
"build:tsc": "npx tsc",
"build:docker": "docker build -t europe-west1-docker.pkg.dev/emre-aksoy/docker/hello-world .",
"build": "npm run build:tsc && npm run build:docker",
"deploy:container": "docker push europe-west1-docker.pkg.dev/emre-aksoy/docker/hello-world",
"deploy:k8s": "kubectl apply -f ./k8s && kubectl rollout restart deployment hello-world-deployment",
"deploy": "npm run build && npm run deploy:container && npm run deploy:k8s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emre1791/hello-world.git"
},
"keywords": [],
"author": "Emre Aksoy",
"license": "ISC",
"bugs": {
"url": "https://github.com/emre1791/hello-world/issues"
},
"homepage": "https://github.com/emre1791/hello-world#readme",
"devDependencies": {
"@types/node": "^18.11.9",
"concurrently": "^7.6.0",
"nodemon": "^2.0.20",
"typescript": "^4.9.3"
}
}