-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.21 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
39
40
41
42
43
44
45
46
{
"name": "learn-k8s",
"version": "0.1.0",
"description": "This project is about learning Kubernetes.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"start:dev": "nodemon index.js",
"test": "jest -c jest.config.json",
"lint": "npx eslint -c .eslintrc.json src test",
"lint:fix": "npx eslint --fix -c .eslintrc.json src test",
"precommit": "npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yusufshakeel/learn-k8s.git"
},
"keywords": [
"docker",
"container",
"kubernetes"
],
"author": "Yusuf Shakeel",
"license": "MIT",
"bugs": {
"url": "https://github.com/yusufshakeel/learn-k8s/issues"
},
"homepage": "https://github.com/yusufshakeel/learn-k8s#readme",
"dependencies": {
"@fastify/cors": "^9.0.1",
"@fastify/helmet": "^11.1.1",
"config": "^3.3.9",
"fastify": "^4.17.0",
"fastify-metrics": "^10.3.0",
"node-cache": "^5.1.2"
},
"devDependencies": {
"eslint": "^8.40.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"nodemon": "^3.0.3",
"prettier": "^3.2.4"
}
}