1{
2 "name": "example-typescript",
3 "version": "0.0.1",
4 "description": "This is an example of an Apify actor.",
5 "dependencies": {
6 "@apify/log": "^2.1.1",
7 "apify": "^3.0.1"
8 },
9 "devDependencies": {
10 "@apify/eslint-config-ts": "^0.2.3",
11 "@apify/tsconfig": "^0.1.0",
12 "@typescript-eslint/eslint-plugin": "^5.30.7",
13 "@typescript-eslint/parser": "^5.30.7",
14 "eslint": "^8.20.0",
15 "ts-node": "^10.9.1",
16 "typescript": "^4.7.4"
17 },
18 "scripts": {
19 "start": "npm run start:dev",
20 "start:prod": "node dist/main.js",
21 "start:dev": "ts-node -T src/main.ts",
22 "build": "tsc",
23 "lint": "eslint ./src --ext .js,.ts",
24 "lint:fix": "eslint ./src --ext .js,.ts --fix",
25 "test": "echo \"Error: oops, the actor has no tests yet, sad!\" && exit 1"
26 },
27 "author": "It's not you it's me",
28 "license": "ISC"
29}