-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.38 KB
/
package.json
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
{
"name": "plutus-news-scraper",
"version": "0.0.0",
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.js",
"private": true,
"license": "UNLICENSED",
"scripts": {
"preinstall": "npx only-allow npm",
"postinstall": "npx husky install",
"prepare": "npx husky install",
"lint": "npx eslint .",
"test": "npx jest",
"build": "rimraf ./dist && npx swc ./src --out-dir ./dist",
"cli": "npm run build && node dist/index.js",
"typeorm": "npx typeorm-ts-node-commonjs",
"typeorm:run-migrations": "npm run typeorm migration:run -- --dataSource src/Utils/TypeormDataSource.ts",
"typeorm:generate-migration": "npm run typeorm migration:generate -- --dataSource src/Utils/TypeormDataSource.ts",
"typeorm:drop-schema": "npm run typeorm schema:drop -- --dataSource src/Utils/TypeormDataSource.ts"
},
"devDependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.36",
"@swc/jest": "^0.2.24",
"@total-typescript/ts-reset": "^0.4.2",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/amqplib": "^0.10.1",
"@types/express": "^4.17.17",
"@types/html-to-text": "^9.0.0",
"@types/jest": "^29.4.0",
"@types/jsdom": "^21.1.0",
"@types/luxon": "^3.2.0",
"@types/node": "^18.11.18",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"eslint": "^8.33.0",
"jest": "^29.4.3",
"rimraf": "^4.1.2",
"sqlite3": "^5.1.4",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@lifeomic/attempt": "^3.0.3",
"amqplib": "^0.10.3",
"commander": "^10.0.0",
"dotenv": "^16.0.3",
"esm": "^3.2.25",
"express": "^4.18.2",
"html-to-text": "^9.0.3",
"inversify": "^6.0.1",
"jsdom": "^21.1.0",
"luxon": "^3.3.0",
"node-fetch": "^2.6.9",
"pg": "^8.9.0",
"pino": "^8.8.0",
"pino-loki": "^2.0.4",
"pino-pretty": "^9.1.1",
"pino-syslog": "^3.0.0",
"prom-client": "^14.1.1",
"puppeteer": "^19.7.2",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"redis": "^4.6.4",
"reflect-metadata": "^0.1.13",
"schema-dts": "^1.1.2",
"schema-dts-gen": "^1.1.2",
"superjson": "^1.12.2",
"tslib": "^2.5.0",
"typeorm": "^0.3.14",
"validator": "^13.9.0",
"zod": "^3.20.6"
}
}