-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.82 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.82 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "pulumi-aws-infrastructure",
"version": "1.0.0",
"description": "Cost-optimized AWS infrastructure using Pulumi",
"main": "index.js",
"scripts": {
"build": "tsc",
"test": "mocha -r ts-node/register tests/**/*.spec.ts",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"dev:preview": "cd environments/dev && pulumi preview",
"dev:up": "cd environments/dev && pulumi up",
"staging:preview": "cd environments/staging && pulumi preview",
"staging:up": "cd environments/staging && pulumi up",
"prod:preview": "cd environments/prod && pulumi preview",
"prod:up": "cd environments/prod && pulumi up",
"prepare": "husky"
},
"dependencies": {
"@pulumi/aws": "^6.0.0",
"@pulumi/pulumi": "^3.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"chai": "^4.3.10",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.9",
"mocha": "^10.4.0",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.0.0"
},
"lint-staged": {
"*.ts": [
"eslint --fix"
],
"*.{ts,js,json,md,yml,yaml}": [
"prettier --write"
]
},
"keywords": [
"pulumi",
"aws",
"infrastructure",
"iac"
],
"engines": {
"node": ">=22.0.0"
},
"author": "Your Name",
"license": "MIT"
}