-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
60 lines (60 loc) · 1.65 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": "adolla",
"version": "1.0.0",
"description": "Adolla is a manga reader for every device with a web browser",
"scripts": {
"start": "ts-node src/index.ts",
"start-es": "npm run build && node ./dist/index.js",
"dev": "npm start",
"clear-cache": "npm run build && node ./dist/clear-cache.js",
"format-data": "npm run build && node ./dist/format-data.js",
"build": "etsc",
"build-fe": "babel public/js -d public/js_compiled",
"lint": "eslint src/",
"lint:fix": "prettier --write . && eslint src/ --fix",
"build-binaries": "npm run build && pkg dist/index.js",
"push": "ts-node src/send-notification.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/chalk": "^2.2.0",
"@types/express": "^4.17.9",
"@types/express-handlebars": "^3.1.0",
"@types/telebot": "^1.2.1",
"bbcode-parser": "^1.0.10",
"body-parser": "^1.19.0",
"chalk": "^4.1.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-handlebars": "^5.2.0",
"fuse.js": "^6.4.3",
"html-entities": "^1.3.1",
"jipdb": "^1.0.5",
"jsdom": "^16.4.0",
"mangadex-api": "^4.6.4",
"node-fetch-extra": "0.0.3",
"pkg": "^4.4.9",
"prettier-eslint": "^12.0.0",
"telebot": "^1.4.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"web-push": "^3.5.0"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.0",
"@babel/preset-env": "^7.18.0",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"eslint": "^7.16.0",
"nodemon": "^2.0.6",
"prettier": "2.2.1"
},
"optionalDependencies": {
"esbuild": "^0.15.10",
"esbuild-node-tsc": "^2.0.4"
}
}