-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.12 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
{
"name": "brewtopia-backend",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"scripts": {
"build": "tsc",
"start": "cross-env NODE_ENV=production node dist/server.js",
"dev": "cross-env NODE_ENV=development nodemon src/server.ts",
"test": "cross-env NODE_ENV=test jest --ci --detectOpenHandles --testTimeout=5000 --forceExit",
"test:watch": "jest --detectOpenHandles --watch"
},
"author": "Lionel Kaneza",
"license": "ISC",
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,mjs,yml,js}": "prettier --write"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.688.0",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.3",
"busboy": "^1.6.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dayjs": "^1.11.13",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-jwt": "^8.4.1",
"express-validator": "^7.2.0",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.7.1",
"morgan": "^1.10.0",
"nanoid": "^3.3.7",
"rate-limiter-flexible": "^5.0.3",
"resend": "^4.0.0",
"sharp": "^0.33.5",
"socket.io": "^4.8.0"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/bcrypt": "^5.0.2",
"@types/busboy": "^1.5.4",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.13",
"@types/jsonwebtoken": "^9.0.7",
"@types/morgan": "^1.9.9",
"@types/node": "^22.5.2",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-unicorn": "^55.0.0",
"eslint-plugin-unused-imports": "^4.1.3",
"globals": "^15.9.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.4",
"prettier": "3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0"
}
}