-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.05 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
{
"name": "automated-infrastructures",
"version": "1.0.0",
"description": "An attempt to create a infrastructure setup by Infrastructure-as-Code approach.",
"main": "index.js",
"repository": "https://github.com/hainenber/automated-infrastructures",
"author": "hainenber",
"type": "module",
"license": "MIT",
"scripts": {
"start-nexus": "deno --allow-env --allow-read --allow-sys --allow-write --allow-run --allow-net scripts/start-nexus.ts",
"start-jenkins": "deno --allow-env --allow-read --allow-run --allow-write scripts/start-jenkins.ts",
"lint-fix": "deno fmt",
"sync_forked_repos": "deno run --allow-net --allow-env scripts/sync_forked_repos.ts"
},
"dependencies": {
"@logtape/logtape": "^0.8.0",
"@octokit/types": "^13.7.0",
"axios": "^1.7.9",
"dotenv": "^16.4.7",
"es-toolkit": "^1.31.0",
"execa": "^9.5.2",
"glob": "^11.0.1",
"mustache": "^4.2.0",
"octokit": "^4.1.0",
"rimraf": "^6.0.1"
},
"devDependencies": {
"@types/mustache": "^4.2.5",
"@types/node": "^22.10.6"
}
}