-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.34 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
75
76
77
78
79
80
{
"name": "manga2-kindle-server-queue",
"version": "1.0.0",
"description": "Manga2Kindle Server Queue",
"scripts": {
"build": "yarn tsc",
"tsc": "tsc --project tsconfig.compile.json",
"tsc:w": "tsc --project tsconfig.json -w",
"start": "tsnd --inspect --ignore-watch node_modules --respawn --transpile-only -r tsconfig-paths/register src/index.ts",
"start:prod": "cross-env NODE_ENV=production node dist/index.js",
"test:lint": "eslint src --ext .ts",
"test:lint:fix": "eslint src --ext .ts --fix",
"prettier": "prettier '{src,test}/**/*.ts' --write"
},
"keywords": [
"manga",
"kindle",
"e-reader"
],
"author": {
"name": "Eduardo Fernandez",
"email": "[email protected]"
},
"license": "CC-BY-NC-SA-4.0",
"homepage": "https://manga2kindle.com",
"dependencies": {
"@tsed/ajv": "^6.26.0",
"@tsed/common": "^6.26.0",
"@tsed/core": "^6.26.0",
"@tsed/di": "^6.26.0",
"@tsed/exceptions": "^6.26.0",
"@tsed/json-mapper": "^6.26.0",
"@tsed/platform-express": "^6.26.0",
"@tsed/schema": "^6.26.0",
"@tsed/swagger": "^6.26.0",
"ajv": "^7.1.1",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"method-override": "^3.0.0"
},
"devDependencies": {
"@tsed/cli-plugin-eslint": "2.10.1",
"@types/axios": "^0.14.0",
"@types/compression": "^1.7.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/method-override": "0.0.31",
"@types/multer": "^1.4.5",
"@types/node": "^14.14.28",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"concurrently": "^5.3.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.0.9",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.5"
},
"readme": "ERROR: No README data found!",
"_id": "[email protected]",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-commit": "git update-index --again"
}
}
}