-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.73 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.73 KB
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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:prod": "node dist/server.js",
"start:dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"build": "tsc",
"lint": "npx eslint src --ignore-pattern .ts",
"lint:fix": "npx eslint src --fix",
"prettier": "prettier --ignore-path .gitignore --write \"./src/**/*.+(js|ts|json)\"",
"prettier:fix": "npx prettier --write src"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/cookie-parser": "^1.4.7",
"@types/ejs": "^3.1.5",
"@types/express-useragent": "^1.0.5",
"@types/jsonwebtoken": "^9.0.6",
"@types/multer": "^1.4.11",
"@types/node-schedule": "^2.1.7",
"axios": "^1.7.7",
"bcrypt": "^5.1.1",
"bullmq": "^5.18.0",
"cloudinary": "^2.2.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.19.2",
"express-useragent": "^1.0.15",
"http-status": "^1.7.4",
"ioredis": "^5.4.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.4.4",
"mongoose-autopopulate": "^1.1.0",
"multer": "^1.4.5-lts.1",
"node-schedule": "^2.1.1",
"nodemailer": "^6.9.15",
"socket.io": "^4.8.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/node": "^22.2.0",
"@types/nodemailer": "^6.4.16",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5",
"typescript-eslint": "^7.9.0"
}
}