-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.61 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.61 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
{
"name": "influencex",
"version": "1.0.0",
"description": "InfluenceX - KOL Marketing Automation Agent",
"main": "server/index.js",
"scripts": {
"start": "node server/index.js",
"dev": "node server/index.js",
"build": "cd client && npm install && npx vite build",
"dev:client": "cd client && npx vite",
"test": "node --test 'server/__tests__/*.test.js'",
"test:watch": "node --test --watch 'server/__tests__/*.test.js'",
"seed": "node server/seed-demo.js",
"rotate-mailbox-key": "node server/scripts/rotate-mailbox-key.js"
},
"keywords": [
"kol",
"influencer-marketing",
"creator-economy",
"youtube",
"tiktok",
"crm",
"automation"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/oratis/influencex.git"
},
"homepage": "https://github.com/oratis/influencex",
"bugs": {
"url": "https://github.com/oratis/influencex/issues"
},
"type": "commonjs",
"dependencies": {
"@google-analytics/data": "^5.2.1",
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/auto-instrumentations-node": "^0.73.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.215.0",
"@opentelemetry/sdk-node": "^0.215.0",
"@sentry/node": "^9.47.1",
"bcryptjs": "^3.0.3",
"better-sqlite3": "^12.8.0",
"bullmq": "^5.76.2",
"compression": "^1.8.1",
"cors": "^2.8.6",
"dotenv": "^17.4.0",
"express": "^5.2.1",
"ioredis": "^5.10.1",
"nodemailer": "^8.0.4",
"pg": "^8.13.0",
"resend": "^6.10.0",
"stripe": "^22.0.2",
"undici": "^8.0.0",
"uuid": "^13.0.0"
}
}