-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.03 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
{
"bugs": {
"url": "https://github.com/quadnix/octo/issues"
},
"dependencies": {},
"description": "The Octo CDK is an opinionated cloud infrastructure management and CICD tool.",
"devDependencies": {
"@nx/devkit": "~18.2.1",
"@nx/eslint-plugin": "~18.2.1",
"@nx/js": "~18.2.1",
"@types/jest": "~29.5.12",
"@types/node": "~18.19.28",
"@typescript-eslint/eslint-plugin": "~7.4.0",
"@typescript-eslint/parser": "~7.4.0",
"axios": "~1.6.8",
"dpdm": "~3.14.0",
"eslint": "~8.57.0",
"eslint-config-prettier": "~9.1.0",
"eslint-import-resolver-typescript": "~3.6.3",
"eslint-plugin-boundaries": "~4.2.2",
"eslint-plugin-import": "~2.29.1",
"eslint-plugin-jsonc": "~2.15.0",
"eslint-plugin-prettier": "~5.1.3",
"eslint-plugin-spellcheck": "~0.0.20",
"husky": "~9.0.11",
"jest": "~29.7.0",
"nx": "~18.2.1",
"prettier": "~3.2.5",
"rimraf": "~5.0.5",
"source-map-support": "~0.5.21",
"ts-jest": "~29.1.2",
"ts-loader": "~9.5.1",
"ts-node": "~10.9.2",
"tsconfig-paths": "~4.2.0",
"typescript": "~5.4.3"
},
"homepage": "https://github.com/quadnix/octo#readme",
"keywords": [
"cdk",
"cicd",
"infrastructure",
"octo"
],
"license": "MIT",
"name": "@quadnix/packages",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/quadnix/octo.git"
},
"scripts": {
"build": "nx run-many -t build",
"format": "nx run-many -t format",
"install:local-octo": "rimraf node_modules/@quadnix && nx run @quadnix/octo:build && nx run @quadnix/octo-aws-cdk:build && npm install",
"lint": "nx run-many -t lint",
"lint:fix": "nx run-many -t lint:fix",
"prepare": "husky install",
"test": "nx run-many -t test",
"test:cov": "nx run-many -t test:cov",
"test:e2e": "nx run-many -t test:e2e",
"test:integration": "nx run-many -t test:integration",
"test:watch": "nx run-many -t test:watch"
},
"type": "module",
"version": "0.0.0",
"workspaces": [
"packages/*"
]
}