-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.65 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "drunk-pulumi",
"version": "0.0.1",
"pulumi": {
"resource": true,
"name": "drunk-coding"
},
"scripts": {
"build": "cross-env NODE_ENV=production npm run update-tsconfig && npx tsc && npm run copy-pkg",
"copy-pkg": "ts-node ./.tools/packageForPublish.ts && cpy ReadMe.md .out-bin/",
"update-tsconfig": "ts-node ./.tools/update_tsconfig.ts",
"pack": "cd .out-bin && npm pack && cd ../",
"postinstall": "husky install",
"new-stack": "pulumi stack init --secrets-provider=passphrase",
"up": "pulumi up --yes --skip-preview",
"reup": "pulumi up --refresh --yes --skip-preview",
"destroy": "pulumi destroy --yes --skip-preview",
"update": "npx npm-check-updates -u",
"export": "pulumi stack export --file state.json",
"import": "pulumi stack import --file state.json",
"test-leak": "cross-env PULUMI_DEBUG_PROMISE_LEAKS=true TS_NODE_PROJECT='./tsconfig.test.json' mocha --timeout 10000 -r ts-node/register 'z_tests/**/*.ts'",
"test": "cross-env TS_NODE_PROJECT='./tsconfig.test.json' mocha --timeout 10000 -r ts-node/register 'z_tests/**/*.test.ts'",
"testcert": "cross-env TS_NODE_PROJECT='./tsconfig.test.json' mocha --timeout 10000 -r ts-node/register '**/*.ts'",
"test-cover": "cross-env TS_NODE_PROJECT='./tsconfig.test.json' nyc mocha --timeout 10000 -r ts-node/register 'z_tests/**/*.ts'",
"lint": "eslint **/*.ts",
"lint:fix": "eslint **/*.ts --fix"
},
"devDependencies": {
"@types/chai": "^4.3.12",
"@types/mocha": "^10.0.6",
"@types/netmask": "^2.0.5",
"@types/node": "^20.11.26",
"@types/node-forge": "^1.3.11",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"chai": "^5.1.0",
"cpy-cli": "^5.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
},
"dependencies": {
"@azure/identity": "^4.0.1",
"@azure/keyvault-keys": "^4.8.0",
"@azure/keyvault-secrets": "^4.8.0",
"@openpgp/web-stream-tools": "^0.1.1",
"@pulumi/azure-native": "^2.30.0",
"@pulumi/azuread": "5.47.2",
"@pulumi/cloudflare": "^5.22.0",
"@pulumi/kubernetes": "^4.9.0",
"@pulumi/pulumi": "^3.110.0",
"@pulumi/random": "^4.16.0",
"@pulumi/tls": "^5.0.1",
"axios": "^1.6.7",
"netmask": "^2.0.2",
"node-forge": "^1.3.1",
"openpgp": "^5.11.1",
"to-words": "^4.0.1",
"url-join-ts": "^1.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,ts}": [
"eslint --fix"
]
}
}