-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.59 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.59 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
{
"name": "cm-bk",
"version": "1.0.0",
"description": "Commit app backend - social accountability habit commitment",
"type": "module",
"main": "index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"db:push": "drizzle-kit push",
"db:migrate": "drizzle-kit migrate",
"db:generate": "drizzle-kit generate",
"db:studio": "drizzle-kit studio",
"db:seed": "tsx src/db/seed.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"bullmq": "^5.8.0",
"cloudinary": "^2.6.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.41.0",
"expo-server-sdk": "^3.13.1",
"express": "^5.1.0",
"express-rate-limit": "^8.0.1",
"groq-sdk": "^0.13.0",
"ioredis": "^5.6.0",
"jsonwebtoken": "^9.0.2",
"luxon": "^3.7.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"node-cron": "^4.2.1",
"pg": "^8.13.0",
"resend": "^6.9.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"winston": "^3.17.0",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/luxon": "^3.7.1",
"@types/morgan": "^1.9.10",
"@types/multer": "^1.4.12",
"@types/node": "^24.3.0",
"@types/node-cron": "^3.0.11",
"@types/pg": "^8.11.10",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"drizzle-kit": "^0.30.0",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"tsx": "^4.20.4",
"typescript": "^5.9.2"
}
}