This repository was archived by the owner on May 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.58 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.58 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
{
"name": "@apify-projects/router-framework",
"version": "0.2.5",
"description": "Router-based framework for multi-site scraper flow management",
"repository": {
"type": "git",
"url": "git+https://github.com/apify-projects/router-framework"
},
"publishConfig": {
"@apify-projects:registry": "https://npm.pkg.github.com"
},
"source": "src/api/main.ts",
"main": "dist/api/main.js",
"dependencies": {
"@types/node": "^16.11.10",
"apify": "^2.2.2",
"debounce-async": "^0.0.2",
"lodash.clonedeep": "^4.5.0",
"lodash.get": "^4.4.2",
"lodash.has": "^4.5.2",
"lodash.mergewith": "^4.6.2",
"lodash.set": "^4.3.2",
"nanoid": "^3.2.0",
"observable-slim": "^0.1.5",
"pluralize": "^8.0.0"
},
"devDependencies": {
"@apify/eslint-config-ts": "^0.2.3",
"@apify/tsconfig": "^0.1.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^7.0.0",
"eslint-plugin-import": "^2.25.3",
"gen-esm-wrapper": "^1.1.3",
"playwright": "^1.19.0",
"playwright-core": "^1.19.0",
"puppeteer": "^10.4.0",
"rimraf": "^3.0.2",
"ts-node": "^10.5.0",
"typescript": "^4.5.2"
},
"peerDependencies": {
"playwright": "^1.19.2",
"playwright-core": "^1.19.2",
"puppeteer": "^10.4.0"
},
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.json --outDir dist",
"prepublishOnly": "npm run build",
"dev": "rimraf dist && tsc -p tsconfig.json --outDir dist --watch",
"lint": "eslint src",
"lint:fix": "eslint src --fix"
},
"license": "ISC"
}