-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.7 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.7 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
86
87
88
89
90
91
{
"name": "backend",
"version": "0.0.0",
"description": "API Server",
"author": "TechKarmic Ventures",
"license": "ISC",
"scripts": {
"start": "npm run build && cross-env NODE_ENV=production node dist/server.js",
"dev": "cross-env NODE_ENV=development nodemon",
"build": "swc src -d dist --source-maps --copy-files",
"build:tsc": "tsc && tsc-alias",
"test": "jest --forceExit --detectOpenHandles",
"lint": "eslint --ignore-path .gitignore --ext .ts src/",
"lint:fix": "npm run lint -- --fix",
"deploy:prod": "npm run build && pm2 start ecosystem.config.js --only prod && pm2 update",
"deploy:dev": "pm2 start ecosystem.config.js --only dev"
},
"dependencies": {
"@langchain/community": "1.1.15",
"@langchain/core": "1.1.24",
"@langchain/openai": "1.2.7",
"@swc/cli": "0.8.0",
"@swc/core": "1.2.220",
"axios": "1.13.5",
"bcrypt": "6.0.0",
"chatgpt": "5.2.5",
"class-transformer": "0.5.1",
"class-validator": "0.14.0",
"compression": "1.8.1",
"cookie-parser": "1.4.6",
"cors": "2.8.5",
"dotenv": "16.4.5",
"envalid": "7.3.1",
"express": "4.22.1",
"googleapis": "131.0.0",
"helmet": "5.1.1",
"hpp": "0.2.3",
"ioredis": "5.7.0",
"jsonwebtoken": "9.0.3",
"langchain": "1.2.24",
"lodash": "4.17.23",
"lru-cache": "11.1.0",
"moment-timezone": "0.6.0",
"mongoose": "8.9.5",
"morgan": "1.10.1",
"pm2": "6.0.14",
"razorpay": "2.9.6",
"reflect-metadata": "0.1.13",
"swagger-jsdoc": "6.2.1",
"swagger-ui-express": "4.5.0",
"typedi": "0.10.0",
"uuid": "9.0.1",
"winston": "3.8.1",
"winston-daily-rotate-file": "4.7.1"
},
"devDependencies": {
"@types/bcrypt": "5.0.0",
"@types/compression": "1.7.2",
"@types/cookie-parser": "1.4.3",
"@types/cors": "2.8.12",
"@types/express": "4.17.21",
"@types/hpp": "0.2.2",
"@types/jest": "28.1.6",
"@types/jsonwebtoken": "8.5.8",
"@types/lodash": "4.17.20",
"@types/lru-cache": "7.10.9",
"@types/morgan": "1.9.3",
"@types/node": "17.0.45",
"@types/supertest": "2.0.12",
"@types/swagger-jsdoc": "6.0.1",
"@types/swagger-ui-express": "4.1.3",
"@typescript-eslint/eslint-plugin": "8.56.0",
"@typescript-eslint/parser": "8.56.0",
"cross-env": "7.0.3",
"eslint": "10.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.1",
"jest": "28.1.1",
"lint-staged": "13.0.3",
"node-config": "0.0.2",
"nodemon": "2.0.19",
"prettier": "2.7.1",
"supertest": "6.2.4",
"ts-jest": "28.0.7",
"ts-node": "10.9.2",
"tsc-alias": "1.7.0",
"tsconfig-paths": "4.0.0",
"typescript": "5.9.3"
}
}