forked from Walkover-Web-Solution/gtwy-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.59 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.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
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
92
93
94
95
{
"name": "plug-service-v2",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"type": "module",
"scripts": {
"dev": "nodemon src/index.js",
"migrate:up": "sequelize-cli db:migrate --config config/config.js --migrations-path migrations/pg && sequelize-cli db:migrate --config config/timescale_config.js --migrations-path migrations/timescale",
"migrate:undo": "sequelize-cli db:migrate:undo --config config/config.js --migrations-path migrations/pg && sequelize-cli db:migrate:undo --config config/timescale_config.js --migrations-path migrations/timescale",
"migratePg:up": "sequelize-cli db:migrate --config config/config.js --migrations-path migrations/pg",
"migratePg:undo": "sequelize-cli db:migrate:undo --config config/config.js --migrations-path migrations/pg",
"migrateTimescale:up": "sequelize-cli db:migrate --config config/timescale_config.js --migrations-path migrations/timescale",
"migrateTimescale:undo": "sequelize-cli db:migrate:undo --config config/timescale_config.js --migrations-path migrations/timescale",
"create:migrationDb": "npx sequelize-cli migration:create --migrations-path migrations/pg --name",
"create:migrationTimescale": "npx sequelize-cli migration:create --migrations-path migrations/timescale --name",
"dockerStart": "sequelize-cli db:migrate --config config/config.js --migrations-path migrations/pg && sequelize-cli db:migrate --config config/timescale_config.js --migrations-path migrations/timescale && node src/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npx eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@amplitude/analytics-node": "^1.3.6",
"@elastic/elasticsearch": "^8.10.0",
"@google-cloud/storage": "^7.15.2",
"@google/generative-ai": "^0.2.1",
"@langchain/community": "^0.3.19",
"@langchain/core": "^0.3.40",
"@langchain/langgraph": "^0.2.20",
"@langchain/openai": "^0.4.4",
"@pinecone-database/pinecone": "^5.0.2",
"amqplib": "^0.10.5",
"args-parser": "^1.3.0",
"atatus-nodejs": "^3.2.1",
"axios": "^1.6.3",
"body-parser": "^1.20.2",
"cheerio": "^1.0.0",
"cors": "^2.8.5",
"crc": "^4.3.2",
"csv-parser": "^3.2.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"flat": "^6.0.1",
"gpt-tokenizer": "^3.4.0",
"html-to-text": "^9.0.5",
"http-status-codes": "^2.3.0",
"https-proxy-agent": "^7.0.6",
"joi": "^17.12.3",
"joi-objectid": "^4.0.2",
"jsonwebtoken": "^9.0.2",
"langchain": "0.3.7",
"lodash": "^4.17.21",
"luxon": "^3.5.0",
"mammoth": "^1.9.1",
"mongodb": "^6.3.0",
"mongoose": "^8.1.1",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.6.5",
"nanoid": "^5.0.7",
"newrelic": "^12.8.2",
"node-cron": "^4.1.0",
"nodemon": "^3.0.1",
"openai": "^4.26.1",
"p-limit": "3.1.0",
"pdf-parse": "^1.1.1",
"pg": "^8.11.3",
"puppeteer": "^23.11.1",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"redis": "^4.6.14",
"response-time": "^2.3.3",
"rtlayer-node": "^1.0.2",
"sequelize": "^6.35.2",
"snappy": "^7.2.2",
"stream": "^0.0.2",
"undici": "^7.2.0",
"uuid": "^11.0.3",
"winston": "^3.17.0",
"youtube-transcript": "^1.2.1",
"youtubei.js": "^9.4.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/js": "^9.3.0",
"eslint": "^9.3.0",
"globals": "^15.3.0",
"husky": "^8.0.0",
"sequelize-cli": "^6.6.2"
}
}