-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2.59 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
78
79
80
{
"name": "@68publishers/crawler",
"version": "0.5.6",
"author": "68publishers",
"description": "Consent Management Platform - Cookie Crawler",
"type": "module",
"private": true,
"scripts": {
"dev:app": "nodemon --ignore 'var/*' --ignore 'public/*' ./src/app.mjs",
"dev:worker": "nodemon --ignore 'var/*' --ignore 'public/*' ./src/worker.mjs",
"dev:scheduler": "nodemon --ignore 'var/*' --ignore 'public/*' ./src/scheduler.mjs",
"migrations:up": "./node_modules/.bin/knex --knexfile ./knexfile.mjs migrate:latest",
"migrations:create": "./node_modules/.bin/knex --knexfile ./knexfile.mjs migrate:make",
"eslint:fix": "eslint ./src ./tests --ext .js,.mjs,.cjs --fix",
"eslint": "eslint ./src ./tests --ext .js,.mjs,.cjs",
"user:list": "node ./src/console/console.mjs user:list",
"user:create": "node ./src/console/console.mjs user:create",
"user:delete": "node ./src/console/console.mjs user:delete",
"openapi:bundle": "npx swagger-cli bundle ./openapi/schema.yml --outfile ./public/openapi.json",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"dependencies": {
"@bull-board/api": "^5.2.0",
"@bull-board/express": "^5.2.0",
"awilix": "^8.0.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"bullmq": "^3.14.0",
"chalk": "^5.2.0",
"cli-table3": "^0.6.3",
"commander": "^10.0.1",
"cors": "^2.8.5",
"crawlee": "^3.4.0",
"eslint": "^8.41.0",
"etag": "^1.8.1",
"express": "^4.18.2",
"express-validator": "^6.15.0",
"inquirer": "^9.2.6",
"knex": "^2.4.2",
"method-override": "^3.0.0",
"node-cron": "^3.0.2",
"passport": "^0.6.0",
"passport-http": "^0.3.0",
"pg": "^8.10.0",
"puppeteer": "^20.7.3",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"swagger-ui-express": "^4.6.3",
"uuid": "^9.0.0",
"validator": "^13.9.0",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1",
"winston-transport-sentry-node": "^2.7.0"
},
"devDependencies": {
"eslint-plugin-jest": "^27.6.0",
"jest": "^29.7.0",
"nock": "^13.3.8",
"nodemon": "^2.0.22",
"swagger-cli": "^4.0.4"
},
"repository": {
"type": "git",
"url": "https://github.com/68publishers/crawler"
},
"license": "proprietary",
"bugs": {
"url": "https://github.com/68publishers/crawler/issues"
},
"homepage": "https://github.com/68publishers/crawler#readme",
"jest": {
"testMatch": [
"**/tests/unit/**/?(*.)+(spec|test).mjs?(x)"
],
"moduleFileExtensions": [
"mjs",
"js"
]
}
}