Skip to content

Commit b0a7509

Browse files
committed
Add some packages
1 parent 809cc34 commit b0a7509

File tree

5 files changed

+705
-17
lines changed

5 files changed

+705
-17
lines changed

.env.template

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
PORT=3658
1+
PORT=3000

OWNERS

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# See the OWNERS docs: https://go.k8s.io/owners
2+
3+
reviewers:
4+
- mms-gianni

index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import dotenv from 'dotenv';
44
dotenv.config();
55

66
const app: Express = express();
7-
const port: String = process.env.PORT || "3650";
7+
const port: String = process.env.PORT || "3000";
88

99
app.get('/', (req: Request, res: Response) => {
1010
res.send('Express + TypeScript Server');

package.json

+10-4
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,25 @@
66
"author": "Gianni Carafa",
77
"license": "MIT",
88
"scripts": {
9+
"install": "npx tsc",
910
"build": "npx tsc",
1011
"start": "node dist/index.js",
11-
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\""
12+
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
13+
"debug": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\""
1214
},
1315
"dependencies": {
16+
"axios": "^0.27.2",
17+
"connect-history-api-fallback": "^1.6.0",
18+
"debug": "^4.3.4",
1419
"dotenv": "^16.0.1",
15-
"express": "^4.18.1"
20+
"express": "^4.18.1",
21+
"kubernetes-client": "^9.0.0",
22+
"typescript": "^4.6.4"
1623
},
1724
"devDependencies": {
1825
"@types/express": "^4.17.13",
1926
"@types/node": "^17.0.34",
2027
"concurrently": "^7.2.0",
21-
"nodemon": "^2.0.16",
22-
"typescript": "^4.6.4"
28+
"nodemon": "^2.0.16"
2329
}
2430
}

0 commit comments

Comments
 (0)