-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 2.08 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
{
"name": "@coder-mike/poc-infra-generator",
"description": "A library for streamlined creation and orchestration of distributed systems using Docker",
"version": "0.0.5",
"main": "dist/index.js",
"files": [
"dist/**/*"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"// build": "Builds the library TypeScript",
"build": "tsc",
"// build:watch": "Same as `build`, but watches for changes",
"build:watch": "tsc -w",
"// test": "Run mocha tests",
"test": "echo \"Error: no test specified\" && exit 1",
"// example:build": "Build the example, including TypeScript and docker",
"example:build": "npm run build && npm run example:build:gen-infra && npm run example:build:docker",
"// example:build:gen-infra": "Code-generate the IaC for the example",
"example:build:gen-infra": "set PERSONA=build-infra && node dist/example.js",
"// example:build:docker": "Build the docker images for the example",
"example:build:docker": "docker-compose -f build/docker-compose.yml build",
"// example:start:docker": "Start the docker containers for the example",
"example:start:docker": "docker-compose -f build/docker-compose.yml up --remove-orphans",
"// example:start:in-process": "Run the example in-process without needing to build anything",
"example:start:in-process": "ts-node src/example.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coder-mike/poc-infra-generator.git"
},
"author": "Michael Hunter",
"license": "MIT",
"bugs": {
"url": "https://github.com/coder-mike/poc-infra-generator/issues"
},
"homepage": "https://github.com/coder-mike/poc-infra-generator#readme",
"dependencies": {
"@tsconfig/node20": "^1.0.1",
"@types/node": "^20.3.1",
"axios": "^1.4.0",
"express": "^4.18.2",
"js-yaml": "^4.1.0",
"pg-promise": "^11.5.0",
"readline": "^1.3.0",
"string-argv": "^0.3.2"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/js-yaml": "^4.0.5",
"@types/pg": "^8.10.2",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}