-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
59 lines (59 loc) · 1.98 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
{
"name": "@meilisearch/scrapix",
"version": "0.1.9",
"description": "Automatic scraper and indexer to Meilisearch of any website.",
"main": "dist/src/index.js",
"dependencies": {
"axios": "^1.4.0",
"bull": "^4.10.4",
"crawlee": "^3.0.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"instantsearch.css": "^8.0.0",
"meilisearch": "^0.31.1",
"minimatch": "^9.0.1",
"prettier": "^2.8.4",
"puppeteer": "^21.0.1",
"puppeteer-core": "^21.0.1",
"uuid": "^9.0.0",
"yargs": "^17.7.2"
},
"scripts": {
"build": "yarn tsc",
"start": "yarn tsc && node dist/src/bin/index.js",
"start:prod": "node dist/src/bin/index.js",
"serve": "yarn tsc && node dist/src/server.js",
"dev:build": "nodemon --config ./config/nodemon:build.json",
"dev:ds:scrap": "nodemon --config ./config/nodemon:docsearch-scrap.json",
"dev:default:scrap": "nodemon --config ./config/nodemon:default-scrap.json",
"playground:docsearch": "concurrently \"yarn dev:ds:scrap\" \"yarn playground:start\"",
"playground:default": "concurrently \"yarn dev:default:scrap\" \"yarn playground:start\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"playground:start": "yarn --cwd playground/docusaurus && yarn --cwd playground/docusaurus start",
"test": "echo \"Error: oops, the actor has no tests yet, sad!\" && exit 1"
},
"author": "It's not you it's me",
"license": "ISC",
"devDependencies": {
"@apify/log": "^2.1.3",
"@apify/tsconfig": "^0.1.0",
"@types/express": "^4.17.17",
"@types/prettier": "^2.7.3",
"@types/uuid": "^9.0.2",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"concurrently": "^8.2.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.22",
"typescript": "^5.1.3"
},
"files": [
"dist",
"src"
]
}