-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
74 lines (74 loc) · 1.9 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "javbus-api",
"version": "2.1.2",
"description": "JavBus API",
"main": "index.js",
"homepage": "https://github.com/ovnrain/javbus-api#readme",
"scripts": {
"start": "node -r dotenv/config dist/server.js",
"dev": "tsx watch --clear-screen=false -r dotenv/config api/server.ts",
"build": "tsc",
"vercel-build": "tsc",
"format": "prettier --write \"api/**/*.ts\"",
"lint": "eslint --config .eslintrc.commit.json \"api/**/*.ts\"",
"prepare": "husky"
},
"keywords": [
"javbus",
"api"
],
"author": {
"name": "ovnrain",
"email": "ovnrain@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/ovnrain/javbus-api.git"
},
"license": "MIT",
"devDependencies": {
"@types/bytes": "^3.1.4",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/http-errors": "^2.0.4",
"@types/node": "^20.14.12",
"@types/probe-image-size": "^7.2.5",
"@types/qs": "^6.9.15",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.3",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"tsx": "^4.16.2",
"typescript": "^5.5.4"
},
"dependencies": {
"bytes": "^3.1.2",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-session": "^1.18.0",
"express-validator": "^7.1.0",
"got": "^14.4.2",
"http-errors": "^2.0.0",
"https-proxy-agent": "^7.0.5",
"memorystore": "^1.6.7",
"node-html-parser": "^6.1.13",
"probe-image-size": "^7.2.3",
"qs": "^6.12.3",
"socks-proxy-agent": "^8.0.4",
"znv": "^0.4.0",
"zod": "^3.23.8"
},
"type": "module",
"lint-staged": {
"*.ts": [
"eslint --config .eslintrc.commit.json"
],
"*.html": [
"prettier --write"
]
}
}