-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.7 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
{
"name": "vital",
"version": "0.0.1",
"license": "MIT",
"private": true,
"author": "ekino",
"description": "Vitality (v6y) is a web-based application developed by Ekino, designed to maintain and optimize the health and performance of codebases and applications. While it is primarily used for Ekino projects, it can also be generalized for use by the wider development community.\n\n",
"repository": {
"type": "git",
"url": "https://github.com/ekino/v6y"
},
"scripts": {
"start:frontend": "nx run @v6y/front:start:dev",
"start:frontend:bo": "nx run @v6y/front-bo:start:dev",
"start:bff": "nx run @v6y/bff:start:dev",
"start:bfb:main": "nx run @v6y/bfb-main-analyzer:start:dev",
"start:bfb:static": "nx run @v6y/bfb-static-code-auditor:start:dev",
"start:bfb:dynamic": "nx run @v6y/bfb-url-dynamic-auditor:start:dev",
"start:bfb:devops": "nx run @v6y/bfb-devops-auditor:start:dev",
"start:all": "nx run-many --target=start --all",
"stop:all": "nx run-many --target=stop --all",
"build:tsc": "nx run-many --target=build:tsc --all",
"build": "nx run-many --target=build --all",
"lint": "nx run-many --target=lint --all",
"lint:fix": "nx run-many --target=lint:fix --all --verbose",
"format": "nx run-many --target=format --all",
"ts-coverage": "typescript-coverage-report",
"test": "nx run-many --target=test --all",
"nx:reset": "nx reset",
"nx:analyze:graph": "nx graph",
"nx:analyze:graph:affected": "nx graph --affected",
"nx:clear:cache": "nx reset",
"prepare": "husky"
},
"devDependencies": {
"husky": "^9.1.7",
"nx": "^20.3.0",
"typescript-coverage-report": "^1.1.0"
},
"workspaces": [
"src/**"
]
}