-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.46 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
{
"name": "actor-webdesignernews-scraper",
"version": "1.0.0",
"description": "actor-webdesignernews-scraper",
"homepage": "https://github.com/ganevru/actor-webdesignernews-scraper",
"repository": {
"type": "git",
"url": "https://github.com/ganevru/actor-webdesignernews-scraper"
},
"license": "MIT",
"author": "Ivan Ganev <[email protected]>",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"apify-storage-clean": "rimraf apify_storage/datasets && rimraf apify_storage/request_queues",
"lint": "eslint --fix \"src/**/*.{ts,tsx,js,jsx}\"",
"local-start": "npm run clean && npm run build && node dist/main.js",
"local-start-fresh": "npm run apify-storage-clean && npm run local-start",
"prepublishOnly": "npm run clean && npm run test && npm run build",
"pretty": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json}\"",
"start": "node dist/main.js",
"test": "jest",
"watch": "jest --watchAll"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run prepublishOnly"
}
},
"lint-staged": {
"linters": {
"src/**/*.{ts,tsx,js,jsx}": [
"npm run pretty",
"npm run lint",
"git add"
]
}
},
"dependencies": {
"apify": "^0.13.4",
"lodash.range": "^3.2.0",
"normalize-url": "^4.3.0",
"typescript": "^3.4.3"
},
"devDependencies": {
"@babel/preset-env": "^7.4.3",
"@babel/preset-typescript": "^7.3.3",
"@types/expect-puppeteer": "^3.3.1",
"@types/jest": "^24.0.11",
"@types/jest-environment-puppeteer": "^4.0.0",
"@types/jsdom": "^12.2.3",
"@types/lodash": "^4.14.123",
"@types/node": "^11.13.4",
"@types/puppeteer": "^1.12.3",
"@typescript-eslint/eslint-plugin": "^1.6.0",
"@typescript-eslint/parser": "^1.6.0",
"@typescript-eslint/typescript-estree": "^1.6.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-simple-import-sort": "^3.1.0",
"eslint-plugin-sonarjs": "^0.3.0",
"eslint-plugin-unicorn": "^9.1.1",
"husky": "^1.3.1",
"jest": "^24.7.1",
"jest-puppeteer": "^4.1.1",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"puppeteer": "^1.14.0",
"rimraf": "^2.6.3",
"ts-node": "^8.0.3"
}
}