-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.44 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.44 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "eh-tag-editor",
"version": "3.0.0",
"type": "module",
"engines": {
"node": "^22.18.0 || ^24.3.0"
},
"packageManager": "pnpm@10.32.1",
"scripts": {
"start:server": "nest start --debug --watch",
"build:server": "nest build",
"test:server": "NODE_USE_ENV_PROXY=1 NODE_OPTIONS=\"${NODE_OPTIONS:-} --experimental-vm-modules\" jest --config ./test/server/jest.config.js",
"start:tool": "node scripts/tool.js --watch",
"build:tool": "node scripts/tool.js --minify",
"test:tool": "pnpm tool --help",
"tool": "node --trace-deprecation --enable-source-maps -r dotenv/config ./dist/tool",
"start:browser": "ng serve",
"build:browser": "ng build --configuration production",
"test:browser": "echo no test",
"check": "tsc --build --noEmit",
"clean": "rimraf dist",
"format": "prettier --ignore-path .gitignore --write .",
"lint": "eslint"
},
"imports": {
"#*": "./dist/*.js"
},
"private": true,
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"@actions/http-client": "^4.0.0",
"@fastify/static": "^9.0.0",
"@nestjs/common": "^11.1.17",
"@nestjs/config": "^4.0.3",
"@nestjs/core": "^11.1.17",
"@nestjs/platform-fastify": "^11.1.17",
"@nestjs/swagger": "^11.2.6",
"@octokit/auth-app": "^8.2.0",
"@octokit/auth-oauth-app": "^9.0.3",
"@octokit/request-error": "^7.1.0",
"@octokit/rest": "^22.0.1",
"axios": "^1.13.6",
"class-transformer": "^0.5.1",
"class-validator": "^0.15.1",
"cli-color": "^2.0.4",
"commander": "^14.0.3",
"escape-string-regexp": "^5.0.0",
"fastify": "^5.8.2",
"fs-extra": "^11.3.4",
"idb-keyval": "^6.2.2",
"js-yaml": "^4.1.1",
"lazysizes": "^5.3.2",
"linkify-it": "^5.0.0",
"markdown-it": "^14.1.1",
"node-cache": "^5.1.2",
"parse5": "^8.0.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"simple-git": "^3.33.0",
"tslib": "^2.8.1"
},
"devDependencies": {
"@angular/animations": "^21.2.5",
"@angular/build": "^21.2.3",
"@angular/cdk": "^16.2.14",
"@angular/cli": "^21.2.3",
"@angular/common": "^21.2.5",
"@angular/compiler": "^21.2.5",
"@angular/compiler-cli": "^21.2.5",
"@angular/core": "^21.2.5",
"@angular/forms": "^21.2.5",
"@angular/language-service": "^21.2.5",
"@angular/material": "^16.2.14",
"@angular/platform-browser": "^21.2.5",
"@angular/platform-browser-dynamic": "^21.2.5",
"@angular/router": "^21.2.5",
"@angular/service-worker": "^21.2.5",
"@commander-js/extra-typings": "^14.0.0",
"@eslint/js": "^10.0.1",
"@fastify/compress": "^8.3.1",
"@jest/globals": "^30.3.0",
"@nestjs/cli": "^11.0.16",
"@nestjs/schematics": "^11.0.9",
"@nestjs/testing": "^11.1.17",
"@types/cli-color": "^2.0.6",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/markdown-it": "^14.1.2",
"@types/node": "^25.5.0",
"@types/supertest": "^7.2.0",
"dotenv": "^17.3.1",
"esbuild": "^0.27.4",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"fflate": "^0.8.2",
"jest": "^30.3.0",
"jest-to-match-shape-of": "^1.3.2",
"material-design-icons": "^3.0.1",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"supertest": "^7.2.2",
"ts-jest": "^29.4.6",
"type-fest": "^5.5.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1",
"zone.js": "^0.16.1"
}
}