-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.35 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
{
"name": "zynapse-tail",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.js",
"engines": {
"node": "20.x"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"test": "jest --coverage",
"dev": "nodemon ./src/index.ts",
"build": "tsc",
"start": "node ./dist/index.js",
"lint": "eslint src/**/*.ts",
"format": "eslint src/**/*.ts --fix",
"prettier": "prettier . --write",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint src/**/*.ts --fix",
"prettier --write"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@express-rate-limit/tsconfig": "^1.0.2",
"@sendgrid/mail": "^8.1.3",
"@types/cors": "^2.8.17",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"deep-email-validator": "^0.1.21",
"dotenv": "^16.4.5",
"eslint-config-prettier": "^9.1.0",
"express": "^4.18.3",
"express-async-handler": "^1.2.0",
"express-rate-limit": "^7.2.0",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.2.2",
"morgan": "^1.10.0",
"nanoid": "^5.0.6",
"nocache": "^4.0.0",
"node-notifier": "^10.0.1",
"nodemailer": "^6.9.13",
"openai": "^4.31.0",
"twilio": "^5.0.1",
"winston": "^3.13.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.3.0",
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.7",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/morgan": "^1.9.9",
"@types/node": "^20.11.28",
"@types/node-notifier": "^8.0.5",
"@types/nodemailer": "^6.4.14",
"@types/supertest": "^6.0.2",
"eslint": "9.x",
"globals": "^15.3.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.5",
"nodemon": "^3.1.0",
"prettier": "3.2.5",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.2",
"typescript-eslint": "^7.11.0"
}
}