-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.01 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
{
"name": "youth-book-api",
"version": "1.0.0",
"description": "",
"files": [
"tsconfig.json"
],
"main": "dist/app.js",
"scripts": {
"prepare": "husky install",
"dev": "nodemon",
"build": "tsc && tsc-alias",
"prebuild": "rimraf dist",
"start": "node dist/app.js",
"format": "prettier --write .",
"ts-check": "tsc --project tsconfig.json",
"prettier-check": "prettier --check .",
"cspell-check": "cspell \"**\""
},
"keywords": [
"youthbook",
"comics",
"books"
],
"author": "Cong Anh (conganhhcmus@gmail.com)",
"license": "MIT",
"engines": {
"node": "^20.0",
"yarn": "^1.22"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@types/express": "^4.17.21",
"@types/multer": "^1.4.11",
"@types/node": "^20.11.20",
"cspell": "^8.4.1",
"express-async-errors": "^3.1.1",
"husky": "^9.0.11",
"nodemon": "^3.1.0",
"openapi-types": "^12.1.3",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"tslint": "^6.1.3",
"typescript": "^5.3.3"
},
"dependencies": {
"@types/bcrypt": "^5.0.2",
"@types/jsonwebtoken": "^9.0.5",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"bcrypt": "^5.1.1",
"cloudinary": "^2.0.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"exceljs": "^4.4.0",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"mongoose": "^8.2.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"streamifier": "^0.1.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.2",
"winston": "^3.11.0"
}
}