forked from shivamxverma/CodeSM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.03 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.03 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
62
63
64
65
66
67
68
69
{
"name": "backend",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "bun run --watch src/index.ts",
"start": "bun run src/index.ts",
"typecheck": "tsc --noEmit",
"build": "tsc --noEmit && bun build ./src/index.ts --outdir dist --target bun",
"lint": "eslint --ext .js,.ts src",
"lint:fix": "eslint --fix --ext .js,.ts src",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,md}\"",
"db:sync": "pnpm add file:../db-schema && drizzle-kit generate && drizzle-kit migrate"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.12.0",
"@types/pg": "^8.15.5",
"drizzle-kit": "^0.31.10",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.842.0",
"@aws-sdk/s3-request-presigner": "^3.842.0",
"@google-cloud/text-to-speech": "^6.2.0",
"@google/generative-ai": "^0.24.1",
"@paralleldrive/cuid2": "^3.3.0",
"@types/nodemailer": "^7.0.11",
"axios": "^1.10.0",
"bcryptjs": "^3.0.2",
"body-parser": "^2.2.2",
"bull": "^4.16.5",
"bullmq": "^5.76.1",
"cloudinary": "^2.6.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"db-schema": "file:../db-schema",
"dotenv": "^16.6.1",
"drizzle-orm": "^0.44.7",
"express": "^5.1.0",
"google-auth-library": "^10.6.2",
"http-status": "^2.1.0",
"ioredis": "^5.7.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.15.1",
"multer": "^2.0.1",
"nodemailer": "^8.0.1",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"pg": "8.20.0",
"rate-limiter-flexible": "^7.2.0",
"unique-username-generator": "^1.5.1",
"uuid": "^11.1.0",
"winston": "^3.19.0",
"winston-daily-rotate-file": "^5.0.0",
"yup": "^1.7.1"
}
}