-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.75 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.75 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "server-api",
"version": "2.1.0",
"description": "./README.md",
"scripts": {
"build": "npm run barrels && tsc --project tsconfig.compile.json",
"barrels": "barrelsby --config .barrelsby.json",
"tsc:w": "tsc --project tsconfig.compile.json -w",
"start": "npm run barrels && npm run tsc:w & nodemon -w dist dist/index.js",
"start:prod": "npm run build && 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",
"typeorm": "typeorm-ts-node-commonjs"
},
"dependencies": {
"@tsed/ajv": "7.9.0",
"@tsed/common": "7.9.0",
"@tsed/components-scan": "7.9.0",
"@tsed/core": "7.9.0",
"@tsed/di": "7.9.0",
"@tsed/exceptions": "7.9.0",
"@tsed/json-mapper": "7.9.0",
"@tsed/platform-express": "7.9.0",
"@tsed/schema": "7.9.0",
"@tsed/swagger": "7.9.0",
"ajv": "^8.11.2",
"aws-sdk": "^2.1285.0",
"axios": "^1.2.2",
"barrelsby": "^2.5.1",
"better-sqlite3": "^8.0.1",
"body-parser": "1.20.1",
"compression": "1.7.4",
"cookie-parser": "1.4.6",
"cors": "2.8.5",
"cross-env": "7.0.3",
"dotenv": "^16.0.3",
"express": "4.18.2",
"method-override": "3.0.0",
"multer": "^1.4.2",
"reflect-metadata": "^0.1.13",
"typeorm": "0.3.11"
},
"devDependencies": {
"@tsed/cli-plugin-eslint": "4.2.6",
"@tsed/cli-plugin-typeorm": "4.2.6",
"@types/compression": "1.7.2",
"@types/cookie-parser": "1.4.3",
"@types/cors": "2.8.13",
"@types/dotenv": "^8.2.0",
"@types/express": "4.17.15",
"@types/method-override": "0.0.32",
"@types/multer": "^1.4.7",
"@types/node": "18.11.18",
"@typescript-eslint/eslint-plugin": "5.47.1",
"@typescript-eslint/parser": "5.47.1",
"concurrently": "7.6.0",
"eslint": "8.30.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.2",
"lint-staged": "13.1.0",
"nodemon": "^2.0.20",
"prettier": "2.8.1",
"ts-node": "10.9.1",
"typescript": "4.9.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Manga2Kindle/server-api.git"
},
"keywords": [
"manga",
"kindle",
"e-reader"
],
"author": {
"name": "Eduardo Fernandez",
"email": "yo@edufdez.es"
},
"license": "CC-BY-NC-SA-4.0",
"bugs": {
"url": "https://github.com/Manga2Kindle/server-api/issues"
},
"homepage": "https://github.com/Manga2Kindle/server-api#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-commit": "git update-index --again"
}
},
"tsed": {
"packageManager": "yarn",
"convention": "default",
"architecture": "default"
}
}