-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.42 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.42 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"watch": "nodemon",
"migrate": "npx sequelize-cli db:migrate",
"migrate:undo": "npx sequelize-cli db:migrate:undo",
"seed:abm": "node scripts/seed-abm-defaults.js",
"abm:recompute": "node -e \"require('./abm/jobs/recomputeAccountIntent').runRecomputeIntentJob().then(()=>process.exit(0)).catch(e=>{console.error(e);process.exit(1)})\"",
"schedule:abm": "node jobs/scheduleAbmIntent.js",
"seed:procurement": "node scripts/seed-procurement-registry.js",
"seed:program-intelligence": "node scripts/seed-program-intelligence.js",
"import:sam": "node jobs/importSamOpportunities.js",
"ingest:usaspending": "node jobs/ingestUsaspendingAwards.js",
"ingest:spacewerx": "node jobs/ingestSpacewerxAwards.js",
"seed": "node seeds/index.js",
"heroku-postbuild": "npm prune --omit=dev && mkdir -p ./.cache && if [ -d /app/.cache/puppeteer ]; then mv /app/.cache/puppeteer ./.cache; fi"
},
"sequelize": {
"config": "config/connection.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@turf/turf": "^7.2.0",
"aws-sdk": "^2.1692.0",
"axios": "^1.7.7",
"bcrypt": "^5.0.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.2",
"bull": "^4.16.4",
"bullmq": "^5.49.2",
"cheerio": "^1.0.0-rc.12",
"chrono-node": "^2.7.7",
"connect-session-sequelize": "^7.1.2",
"cors": "^2.8.5",
"csv-parse": "^6.1.0",
"dayjs": "^1.11.13",
"discord.js": "^14.17.2",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-session": "^1.17.2",
"google-ads-api": "^14.2.0",
"ioredis": "^5.4.1",
"jsdom": "^26.1.0",
"jsonwebtoken": "^8.5.1",
"minisearch": "^7.1.2",
"multer": "^1.4.5-lts.1",
"mysql2": "^2.3.3",
"node-cron": "^3.0.3",
"node-fetch": "^2.7.0",
"node-wit": "^6.6.0",
"nodemailer": "^6.9.9",
"nodemon": "^2.0.15",
"openai": "^4.104.0",
"pdf-lib": "^1.17.1",
"pluralize": "^8.0.0",
"puppeteer": "^24.12.1",
"redis": "^4.7.0",
"sequelize": "^6.17.0",
"sharp": "^0.33.3",
"stream-json": "^1.9.1",
"stripe": "^18.0.0",
"twilio": "^4.21.0",
"tz-lookup": "^6.1.25",
"vcard-parser": "^1.0.0",
"vcf": "^2.1.2",
"ws": "^8.18.0",
"xml2js": "^0.6.2"
}
}