This repository was archived by the owner on Mar 29, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (83 loc) · 2.54 KB
/
package.json
File metadata and controls
84 lines (83 loc) · 2.54 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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@hornts/horn",
"version": "0.0.5",
"author": "Alexey Vasyukov",
"license": "MIT",
"engines": {
"node": ">=14"
},
"scripts": {
"nx": "nx",
"start": "nx serve",
"build": "nx build",
"build:all": "nx run-many --all --target=build",
"test": "nx test",
"test:cov": "nx coverage",
"test:all": "nx run-many --all --target=test --parallel",
"test:all:cov": "nx run-many --all --target=coverage --parallel",
"lint": "nx workspace-lint && nx lint",
"lint:all": "nx run-many --all --target=lint --parallel",
"e2e": "nx e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"release": "release-it",
"prepublishOnly": "npm run build:all && npm run test:all",
"publish": "npm run prepublishOnly && nx run-many --all --target=publish",
"update": "nx migrate latest",
"workspace-generator": "nx workspace-generator",
"dep-graph": "nx dep-graph",
"help": "nx help",
"prepare": "husky install"
},
"private": true,
"devDependencies": {
"@nrwl/cli": "13.3.9",
"@nrwl/eslint-plugin-nx": "13.3.9",
"@nrwl/jest": "13.3.9",
"@nrwl/node": "13.3.9",
"@nrwl/tao": "13.3.9",
"@nrwl/workspace": "13.3.9",
"@release-it/bumper": "3.0.1",
"@release-it/conventional-changelog": "3.3.0",
"@types/express": "4.17.13",
"@types/jest": "27.0.3",
"@types/node": "17.0.0",
"@types/pino": "7.0.4",
"@types/uuid": "8.3.3",
"@typescript-eslint/eslint-plugin": "5.6.0",
"@typescript-eslint/parser": "5.3.0",
"dotenv": "10.0.0",
"eslint": "8.5.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"husky": "7.0.4",
"jest": "27.4.5",
"prettier": "2.5.1",
"release-it": "14.11.8",
"ts-jest": "27.1.2",
"ts-node": "10.4.0",
"tslib": "2.3.1",
"typescript": "4.5.4"
},
"dependencies": {
"dependency-graph": "0.11.0",
"express": "4.17.2",
"fastify": "3.25.0",
"pino": "7.5.1",
"pino-pretty": "7.3.0",
"reflect-metadata": "0.1.13",
"uuid": "8.3.2"
}
}