This repository has been archived by the owner on Dec 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.69 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
{
"name": "android-apks",
"version": "1.0.0",
"description": "Download Android apks",
"maintainers": [
"Kirill Molchanov <k03.mad@gmail.com"
],
"repository": {
"type": "git",
"url": "git+https://github.com/k03mad/android-apks.git"
},
"license": "MIT",
"private": true,
"type": "module",
"engines": {
"node": ">=22"
},
"dependencies": {
"@k03mad/actual-versions": "2.4.1",
"@k03mad/request": "7.6.1",
"@k03mad/simple-date": "4.1.1",
"@k03mad/simple-log": "5.1.1",
"@k03mad/simple-prom": "4.2.2",
"chalk": "5.3.0",
"compression": "1.7.5",
"debug": "4.4.0",
"express": "4.21.2",
"express-handlebars": "8.0.1",
"express-minify": "1.0.0",
"helmet": "8.0.0",
"jsdom": "25.0.1",
"lodash": "4.17.21",
"morgan": "1.10.0",
"ms": "2.1.3",
"p-map": "7.0.3",
"recron": "1.1.7"
},
"devDependencies": {
"@k03mad/eslint-config": "28.1.0",
"eslint": "9.17.0",
"husky": "9.1.7",
"nodemon": "3.1.9",
"npm-run-all": "4.1.5",
"stylelint": "16.12.0",
"stylelint-config-standard": "36.0.1"
},
"scripts": {
"lint": "run-p -c lint:eslint lint:stylelint",
"lint:eslint": "eslint ./ --cache",
"lint:stylelint": "stylelint '**/*.css' --cache",
"clean": "rm -rf ./node_modules .eslintcache .stylelintcache || true",
"setup": "npm run clean && npm run setup:pnpm",
"setup:pnpm": "npm i pnpm -g && pnpm i",
"start": "node app/index",
"start:dev": "DEBUG=mad* nodemon -e js,json,css,hbs,woff,woff2,ico,webmanifest app/index",
"apk:get": "DEBUG=mad* node app/cron/scripts/run",
"apk:dl": "DEBUG=mad* TYPE=dl node app/cron/scripts/run",
"prepare": "husky || true"
}
}