This repository was archived by the owner on Mar 23, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.34 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.34 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "deepiri-api-server",
"version": "3.0.0",
"description": "Deepiri API Server - Microservices for Productivity Gamification",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"dev:all": "concurrently \"npm run dev\" \"cd ../frontend && npm run dev\"",
"test": "jest --passWithNoTests",
"migrate": "node scripts/migrate.js",
"seed": "node scripts/seed.js"
},
"keywords": [
"productivity",
"gamification",
"ai",
"microservices",
"tasks",
"challenges"
],
"author": "Deepiri Team",
"license": "MIT",
"dependencies": {
"@influxdata/influxdb-client": "^1.33.2",
"axios": "^1.8.4",
"bcryptjs": "^3.0.2",
"body-parser": "^2.2.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"express-rate-limit": "^7.1.5",
"express-session": "^1.18.1",
"firebase-admin": "^13.2.0",
"helmet": "^7.1.0",
"ioredis": "^5.9.2",
"ioredis-mock": "^8.13.1",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"langchain": "^1.0.6",
"mongoose": "^8.0.3",
"morgan": "^1.10.0",
"node-cron": "^3.0.3",
"openai": "^4.20.1",
"passport": "^0.7.0",
"passport-oauth2": "^1.0.0",
"pg": "^8.11.3",
"prom-client": "^15.1.3",
"redis": "^4.6.12",
"socket.io": "^4.7.4",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"uuid": "^9.0.1",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/compression": "^1.7.5",
"@types/cookie-parser": "^1.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.5",
"@types/morgan": "^1.9.9",
"@types/node": "^20.10.6",
"@types/node-cron": "^3.0.11",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@types/uuid": "^9.0.7",
"@vitejs/plugin-react": "^4.4.0",
"concurrently": "^9.1.2",
"jest": "^29.7.0",
"mongodb-memory-server": "^9.5.0",
"node-notifier": "^10.0.1",
"nodemon": "^3.1.9",
"supertest": "^7.1.3",
"ts-jest": "^29.4.6",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3",
"vite": "^7.0.6"
}
}