-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.94 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
{
"name": "campusconnect-backend",
"version": "1.0.0",
"description": "Backend service for campus connect ",
"main": "server.js",
"author": "Anmol Gangwar",
"license": "MIT",
"scripts": {
"start": "cross-env NODE_ENV=production node -r ./tsconfig-paths.js ./dist/server.js",
"dev": "cross-env NODE_ENV=development tsx watch ./src/server.ts ",
"build": "yarn clean && tsc ",
"clean": "rimraf dist/",
"format": "prettier --write \"./**/*.{js,ts,json}\"",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix"
},
"dependencies": {
"@bull-board/api": "^5.18.3",
"@bull-board/express": "^5.18.3",
"bcryptjs": "^2.4.3",
"bullmq": "^5.7.12",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-mongo-sanitize": "^2.2.0",
"helmet": "^7.1.0",
"http-status": "^1.7.4",
"ioredis": "^5.4.1",
"joi": "^17.13.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.4.0",
"morgan": "^1.10.0",
"pm2": "^5.3.1",
"redis": "^4.6.14",
"tsconfig-paths": "^4.2.0",
"validator": "^13.12.0",
"winston": "^3.13.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/helmet": "^4.0.0",
"@types/jsonwebtoken": "^9.0.6",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.9",
"@types/redis-info": "^3.0.3",
"@types/validator": "^13.11.10",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"concurrently": "^8.2.2",
"copyfiles": "^2.4.1",
"eslint": "^9.3.0",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"ts-node": "^10.9.2",
"tsx": "^4.10.5",
"typescript": "^5.4.5",
"xss-clean": "^0.1.4"
}
}