-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.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
{
"name": "israeli-menora-scraper",
"version": "0.0.1",
"description": "Scraper for Menora-Mivtahim personal data",
"type": "module",
"main": "dist/index.js",
"exports": "./dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "[email protected]:gilgardosh/israeli-menora-scraper.git"
},
"bugs": {
"url": "https://github.com/gilgardosh/israeli-menora-scraper/issues"
},
"homepage": "https://github.com/gilgardosh/israeli-menora-scraper#readme",
"author": "gilgardosh <[email protected]>",
"license": "MIT",
"scripts": {
"start": "tsc && node dist/index.js",
"dev": "node --experimental-json-modules --loader ts-node/esm src/index.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prebuild": "yarn lint:fix",
"build": "tsc",
"prepublish": "yarn build"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"dependencies": {
"ajv": "8.11.0",
"ajv-formats": "2.1.1",
"dotenv": "16.0.0",
"inquirer": "8.2.2",
"puppeteer": "13.5.1"
},
"devDependencies": {
"@types/inquirer": "8.2.1",
"@types/node": "17.0.23",
"@types/puppeteer": "5.4.5",
"@typescript-eslint/eslint-plugin": "5.17.0",
"@typescript-eslint/parser": "5.17.0",
"eslint": "8.12.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"prettier": "2.6.1",
"ts-node": "10.7.0",
"typescript": "4.6.3"
}
}