-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 883 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 883 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
30
31
32
33
34
35
{
"name": "@mridang/homelab",
"type": "module",
"scripts": {
"build": "tsc --noEmit",
"deploy": "pulumi up",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "npx eslint .",
"lint:fix": "npx eslint . --fix",
"test": "jest --verbose --config=jest.config.mjs"
},
"devDependencies": {
"@eslint/compat": "^2.1.0",
"@mridang/eslint-defaults": "^1.6.3",
"@pulumi/kubernetes": "^4.19.0",
"@pulumi/pulumi": "^3.141.0",
"@tsconfig/node20": "latest",
"@types/jest": "^30.0.0",
"@types/node": "^20.3.2",
"dotenv": "^16.4.7",
"eslint": "^9.39.4",
"jest": "^30.0.3",
"jest-junit": "^16.0.0",
"knip": "^6.17.1",
"prettier": "^3.1.1",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.1.3"
},
"private": true,
"workspaces": [
"projects/*"
]
}