-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.7 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 3.7 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
84
85
86
87
88
89
90
91
92
93
{
"private": true,
"name": "holu",
"type": "module",
"version": "1.0.0",
"description": "monorepo for holu projects",
"engines": {
"node": ">= 24.0.0"
},
"workspaces": [
"packages/*",
"examples/*",
"experiments/*"
],
"scripts": {
"test": "yarn build-test && yarn esm-jest",
"esm-jest": "yarn node --experimental-vm-modules --no-warnings=ExperimentalWarning --enable-source-maps $(yarn bin jest)",
"test-examples": "tsc -b examples/tsconfig.e2e.json && yarn esm-jest -c examples/jest.config.ts",
"test-all": "yarn test && yarn test-examples && yarn build-vscode",
"pub": "lerna publish from-package --pre-dist-tag next",
"build": "tsc -b packages/tsconfig.build.json",
"build-openapi-ui": "yarn --cwd packages/openapi build-ui",
"build-test": "tsc -b packages/tsconfig.test.json",
"build-authjs-test": "tsc -b packages/authjs/tsconfig.e2e.json",
"build-examples": "tsc -b examples/tsconfig.build.json",
"build-exam-test": "tsc -b examples/tsconfig.e2e.json",
"build-vscode": "tsc -b examples/tsconfig.vscode.json",
"lint": "eslint",
"cycle": "cycle-detector packages/*/src/index.ts",
"docs": "yarn --cwd website start --port 3001",
"docs-build": "yarn --cwd website build",
"docs-en": "yarn docs --locale en",
"docs-tree": "tree -I '_category_.json' website/i18n/en/docusaurus-plugin-content-docs/current",
"docs-deploy": "cd website && ./deploy.sh",
"clean": "sh -c 'rm -rf packages/*/dist* packages/*/coverage* examples/*/dist* examples/*/coverage*'",
"lerna": "lerna",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/holujs/holu.git"
},
"keywords": [
"holu",
"monorepo"
],
"author": "Костя Третяк",
"license": "MIT",
"bugs": {
"url": "https://github.com/holujs/holu/issues"
},
"homepage": "https://github.com/holujs/holu#readme",
"devDependencies": {
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@commitlint/types": "^21.2.0",
"@eslint/js": "^10.0.1",
"@ts-stack/cycle-detector": "^1.1.4",
"@types/jest": "^30.0.0",
"@types/node": "^26.1.1",
"@types/supertest": "^7.2.1",
"eslint": "^10.8.0",
"husky": "^9.1.7",
"jest": "^30.4.2",
"lerna": "9.0.7",
"prettier": "^3.9.6",
"reflect-metadata": "^0.2.2",
"supertest": "^7.2.2",
"ts-node": "^10.9.2",
"typescript": "npm:@typescript/typescript6@^6.0.2",
"typescript-7": "npm:typescript@^7.0.2",
"typescript-eslint": "^8.65.0"
},
"resolutions": {
"@swagger-api/apidom-ns-asyncapi-2": "npm:-@0.0.1",
"@swagger-api/apidom-ns-openapi-2": "npm:-@0.0.1",
"@swagger-api/apidom-parser-adapter-api-design-systems-json": "npm:-@0.0.1",
"@swagger-api/apidom-parser-adapter-api-design-systems-yaml": "npm:-@0.0.1",
"@swagger-api/apidom-parser-adapter-asyncapi-json-2": "npm:-@0.0.1",
"@swagger-api/apidom-parser-adapter-asyncapi-yaml-2": "npm:-@0.0.1",
"@swagger-api/apidom-parser-adapter-json": "npm:-@0.0.1",
"@swagger-api/apidom-parser-adapter-openapi-json-2": "npm:-@0.0.1",
"@swagger-api/apidom-parser-adapter-openapi-yaml-2": "npm:-@0.0.1",
"@swagger-api/apidom-parser-adapter-openapi-json-3-0": "npm:-@0.0.1",
"@swagger-api/apidom-parser-adapter-openapi-json-3-1": "npm:-@0.0.1",
"@swagger-api/apidom-parser-adapter-openapi-yaml-3-0": "npm:-@0.0.1",
"@swagger-api/apidom-parser-adapter-openapi-yaml-3-1": "npm:-@0.0.1",
"@swagger-api/apidom-parser-adapter-workflows-json-1": "npm:-@0.0.1",
"@swagger-api/apidom-parser-adapter-workflows-yaml-1": "npm:-@0.0.1",
"@swagger-api/apidom-parser-adapter-yaml-1-2": "npm:-@0.0.1"
},
"packageManager": "yarn@4.17.1"
}