-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.22 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.22 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
{
"name": "@opencrvs/infrastructure",
"version": "1.9.0",
"description": "OpenCRVS infrastructure environment setup",
"os": [
"darwin",
"linux"
],
"engines": {
"node": "22.x.x"
},
"license": "MPL-2.0",
"husky": {},
"scripts": {
"environment:init": "ts-node infrastructure/environments/setup-environment.ts",
"environment:upgrade": "yarn environment:init",
"environment:swarm-to-k8s": "ts-node infrastructure/environments/swarm-to-k8s.ts",
"environment:users": "ts-node infrastructure/environments/users.ts",
"environment:update-workflows": "ts-node infrastructure/environments/update-workflows.ts",
"prepare": "husky"
},
"devDependencies": {
"@inquirer/prompts": "^8.3.0",
"@octokit/core": "4.2.1",
"@types/libsodium-wrappers": "^0.7.10",
"@types/prompts": "^2.4.9",
"@types/js-yaml": "4.0.9",
"@types/ssh2": "^1.15.5",
"husky": "9.1.7",
"kleur": "^4.1.5",
"libsodium-wrappers": "^0.7.13",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"js-yaml": "4.1.0",
"glob": "11.0.3",
"handlebars": "^4.7.8"
},
"dependencies": {
"@types/node": "^24.0.0",
"dotenv": "^16.4.5",
"prompts": "^2.4.2",
"ssh2": "^1.17.0"
}
}