-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
59 lines (59 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
{
"name": "taiwan-ebook-search-api",
"version": "1.1.4",
"description": "API",
"main": "./dist/index.ts",
"type": "module",
"scripts": {
"convert-firebase-config": "openssl base64 -A",
"start": "node ./dist/index",
"build": "tsc",
"tsc": "tsc",
"dev": "tsc -w & nodemon ./dist/index",
"format": "prettier --write \"src/**/*.{js,ts,md,json,yml,yaml}\"",
"format-check": "prettier --check \"src/**/*.{js,ts,md,json,yml,yaml}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Taiwan-Ebook-Lover/TaiwanEbookSearch-API.git"
},
"author": "Yuer Lee <[email protected]>",
"contributors": [
"Safefly Tsai <[email protected]> (https://safefly.tw)"
],
"license": "MIT",
"dependencies": {
"cheerio": "1.0.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"firebase-admin": "^12.5.0",
"https-proxy-agent": "^7.0.5",
"node-fetch": "^3.3.2",
"node-telegram-bot-api": "~0.66.0",
"timeout-signal": "^2.0.0",
"ua-parser-js": "^1.0.39"
},
"bugs": {
"url": "https://github.com/Taiwan-Ebook-Lover/TaiwanEbookSearch-API/issues"
},
"homepage": "https://github.com/Taiwan-Ebook-Lover/TaiwanEbookSearch-API",
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"@types/node": "^20.16.5",
"@types/node-fetch": "^2.6.11",
"@types/node-telegram-bot-api": "^0.64.7",
"@types/ua-parser-js": "~0.7.39",
"nodemon": "^3.1.4",
"prettier": "3.3.3",
"typescript": "~5.6.2"
},
"lint-staged": {
"*.{js,ts,md,json,yml,yaml}": "prettier --write"
}
}