forked from tuan-dd/Stay-Mate-BE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.96 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
{
"name": "stay-mate",
"version": "0.0.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "nodemon --exec ts-node ./bin/www.ts",
"start": "node ./bin/www.js",
"build": "tsc",
"lint": "eslint ./src/**/*.ts",
"format": "eslint ./src/**/*.ts --fix"
},
"dependencies": {
"@faker-js/faker": "^7.6.0",
"@redis/client": "^1.5.7",
"bcrypt": "^5.1.0",
"bullmq": "^3.11.0",
"compression": "^1.7.4",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"dayjs": "^1.11.7",
"debug": "~2.6.9",
"dotenv": "^16.0.0",
"express": "~4.16.1",
"googleapis": "^114.0.0",
"helmet": "^6.0.1",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"log4js": "latest",
"module-alias": "^2.2.2",
"mongoose": "^7.0.4",
"morgan": "~1.9.1",
"node-device-detector": "^2.0.14",
"nodemailer": "^6.9.1",
"redis": "^4.6.5",
"rimraf": "^5.0.0",
"yup": "^1.0.2"
},
"devDependencies": {
"@tsconfig/node18": "^1.0.1",
"@types/bcrypt": "^5.0.0",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.13",
"@types/debug": "^4.1.7",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/http-errors": "^1.8.1",
"@types/jsonwebtoken": "^9.0.1",
"@types/lodash": "^4.14.192",
"@types/morgan": "^1.9.3",
"@types/node": "^16.10.2",
"@types/nodemailer": "^6.4.7",
"@types/yup": "^0.32.0",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.22",
"prettier": "^2.8.7",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
},
"_moduleAliases": {
"@": "./src"
},
"engines": {
"node": ">=14 <15"
}
}