-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 769 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 769 Bytes
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
{
"name": "node-docker-kubernetes",
"description": "Simple NodeJS application to explain basic parts of Kubernetes.",
"version": "1.0.0",
"repository": "https://github.com/juffalow/node-docker-kubernetes",
"license": "MIT",
"dependencies": {
"@godaddy/terminus": "^4.5.0",
"express": "^4.17.1"
},
"scripts": {
"start": "tsc -w & nodemon -q -w dist dist/index.js",
"build": "tsc",
"lint": "eslint . --ext .ts"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^16.9.4",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "^8.25.0",
"nodemon": "^2.0.4",
"typescript": "^4.4.3"
},
"keywords": [
"kubernetes",
"terminus"
]
}