-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
31 lines (31 loc) · 999 Bytes
/
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
{
"name": "proxy-scraper",
"version": "0.2",
"description": "This is an example of an Apify actor.",
"dependencies": {
"apify": "^2.0.7",
"axios": "^0.26.0",
"cheerio": "^1.0.0-rc.10",
"console-log-colors": "^0.2.3"
},
"devDependencies": {
"@apify/eslint-config-ts": "^0.1.4",
"@apify/tsconfig": "^0.1.0",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"eslint": "^7.0.0",
"ts-node": "^10.3.0",
"typescript": "^4.4.4"
},
"scripts": {
"start": "npm run start:dev",
"start:prod": "node dist/main.js",
"start:dev": "ts-node -T src/main.ts",
"build": "tsc",
"lint": "eslint ./src --ext .js,.ts",
"lint:fix": "eslint ./src --ext .js,.ts --fix",
"test": "echo \"Error: oops, the actor has no tests yet, sad!\" && exit 1"
},
"author": "It's not you it's me",
"license": "ISC"
}