-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.1 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
{
"name": "nexus-vibe",
"version": "1.0.0",
"description": "social media web application, The social network that resonates.",
"main": "src/main.ts",
"scripts": {
"start": "tsc && node dist/main.js",
"dev": "nodemon --exec ts-node src/main.ts",
"prisma-bind": "ts-node prisma/generator/schema.prisma.ts && prisma format",
"prisma-gen": "npx prisma generate",
"prisma-push": "npx prisma db push",
"prisma-seed": "npx prisma db seed",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix"
},
"author": "chouhanmudassarali@gmail.com",
"license": "MIT",
"dependencies": {
"@prisma/client": "^5.6.0",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"bytes": "^3.1.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.17.1",
"express-fileupload": "^1.4.0",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.1.5",
"install": "^0.13.0",
"ioredis": "^5.3.2",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"mime-types": "^2.1.35",
"minio": "^7.1.3",
"ms": "^2.1.3",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.7",
"npm": "^10.2.5",
"rate-limit-redis": "^4.2.0",
"react-router-dom": "^6.21.1",
"redis": "^4.6.11",
"response-time": "^2.3.2",
"socket.io": "^4.7.2",
"vhost": "^3.0.2"
},
"devDependencies": {
"@faker-js/faker": "^8.3.1",
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-fileupload": "^1.4.4",
"@types/jsonwebtoken": "^9.0.5",
"@types/mime-types": "^2.1.4",
"@types/ms": "^0.7.34",
"@types/node": "^20.10.5",
"@types/node-cron": "^3.0.11",
"@types/response-time": "^2.3.8",
"@types/vhost": "^3.0.9",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"nodemon": "^3.0.2",
"prisma": "^5.7.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"prisma": {
"seed": "ts-node prisma/seeder/seed.ts"
}
}