-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
89 lines (89 loc) · 2.76 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
81
82
83
84
85
86
87
88
89
{
"private": true,
"version": "1.1.411",
"author": {
"name": "Apify",
"email": "support@apify.com",
"url": "https://apify.com"
},
"contributors": [
"Gabin Desserprit <gabin.desserprit@apify.com>"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/apify-projects/felps"
},
"bugs": {
"url": "https://github.com/apify-projects/felps/issues"
},
"homepage": "https://github.com/apify-projects/felps",
"devDependencies": {
"@apify/eslint-config-ts": "^0.2.3",
"@apify/tsconfig": "^0.1.0",
"@types/jest": "^28.1.1",
"@types/node": "^17.0.40",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^7.0.0",
"eslint-plugin-import": "^2.25.3",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"jest": "^28.1.1",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.4",
"typescript": "^4.7.2"
},
"workspaces": {
"packages": [
"packages/**"
]
},
"keywords": [
"apify",
"crawlee",
"flow",
"framework",
"headless",
"chrome",
"playwright",
"crawler",
"scraper"
],
"scripts": {
"refresh": "yarn prepare && yarn",
"pub": "yarn workspaces foreach -pti run publish",
"setup": "npm i yarn apify-cli -g && yarn set version 3.2.1 && yarn && yarn clean && yarn build",
"postinstall": "npx husky install",
"dev": "tsc --build --watch",
"build": "tsc --build",
"build:force": "tsc --build --force",
"use-version": "node ./scripts/version.js",
"prepare": "yarn from-imports-to-dependencies && yarn configure-references",
"configure-references": "node ./scripts/configure-references.js",
"from-imports-to-dependencies": "node ./scripts/from-imports-to-dependencies.js",
"clean": "yarn workspaces foreach -pti run clean",
"test": "jest --silent",
"test:dev": "jest --watch",
"test:e2e": "node test/e2e/run.js",
"coverage": "jest --coverage"
},
"packageManager": "^yarn@3.1.2",
"resolutions": {
"apify": "next",
"cagibi": "^0.0.25",
"crawlee": "3.1.0",
"flexsearch": "^0.7.21",
"json-schema-to-ts": "2.5.3",
"apify-client": "^2.5.2",
"cheerio": "1.0.0-rc.10",
"@crawlee/cheerio": "3.1.0",
"@crawlee/playwright": "3.1.0",
"@crawlee/core": "3.1.0",
"@crawlee/types": "3.1.0",
"@crawlee/browser": "3.1.0",
"@crawlee/browser-pool": "next",
"@crawlee/utils": "3.1.0",
"@apify/utilities": "1.2.14"
}
}