-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 4.64 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 4.64 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"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",
"migrateMongo:up": "migrate-mongo up -f ./config/mongo_config.js",
"migrateMongo:down": "migrate-mongo down -f ./config/mongo_config.js",
"migrateMongo:status": "migrate-mongo status -f ./config/mongo_config.js",
"create:migrationMongo": "migrate-mongo create -f ./config/mongo_config.js",
"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 && echo 'Starting Mongo Migrations...' && migrate-mongo up -f ./config/mongo_config.js && echo 'ended Mongo Migrations...' && node src/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npx eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"validate": "npm run lint && npm run format:check",
"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",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/auto-instrumentations-node": "^0.69.0",
"@pinecone-database/pinecone": "^5.0.2",
"@pyroscope/nodejs": "^0.4.8",
"amqplib": "^0.10.5",
"args-parser": "^1.3.0",
"atatus-nodejs": "^3.2.1",
"axios": "1.14.0",
"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",
"migrate-mongo": "^14.0.7",
"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",
"notdiamond": "^2.2.8",
"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": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@eslint/js": "^9.3.0",
"eslint": "^9.3.0",
"globals": "^15.3.0",
"husky": "^8.0.0",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"sequelize-cli": "^6.6.2"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"eslint"
],
"*.{json,md,yml,yaml,cjs}": [
"prettier --write"
]
}
}