-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
95 lines (95 loc) · 2.86 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "the-wild-oasis-api",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"start": "node ./dist/index.js",
"start-1": "node -r tsconfig-paths/register ./dist/index.js",
"build": "tsc --noCheck && tsc-alias",
"start:dev": "set NODE_ENV=development& nodemon ./src/index.ts",
"start:prod": "set NODE_ENV=production& nodemon ./src/index.ts",
"test": "set NODE_ENV=test& npx jest",
"test:watch": "set NODE_ENV=test& npx jest --watchAll",
"test:coverage": "set NODE_ENV=test& npx jest --collect-coverage",
"test:integration": "set NODE_ENV=test& npx jest src/__tests__/",
"test:unit": "set NODE_ENV=test& npx jest src/api/ --detectOpenHandles",
"dev:import": "npx ts-node src/data/importData.ts --bookings"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.6.8",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"cloudinary": "^2.1.0",
"compression": "^1.7.4",
"cookie": "^0.6.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dayjs": "^1.11.10",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"express-rate-limit": "^7.2.0",
"helmet": "^7.1.0",
"hi-base32": "^0.5.1",
"hpp": "^0.2.3",
"html-to-text": "^9.0.5",
"joi": "^17.12.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.1.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.13",
"otpauth": "^9.2.3",
"pino": "^8.18.0",
"pino-pretty": "^10.3.1",
"qs": "^6.12.0",
"redis": "^4.6.13",
"stripe": "^14.25.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/compression": "^1.7.5",
"@types/cookie": "^0.6.0",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/hpp": "^0.2.6",
"@types/html-to-text": "^9.0.4",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.11",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^6.4.14",
"@types/qs": "^6.9.14",
"@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"mongodb-memory-server": "^9.2.0",
"node-mocks-http": "^1.14.1",
"prettier": "^3.2.4",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0"
},
"engines": {
"node": "^20"
}
}