-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.69 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.69 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
56
57
{
"name": "@zigtech/scrapper",
"version": "0.0.7",
"description": "Headless scrapper developed to run in serverfull and serverless infra.",
"keywords": [
"scrapper",
"crawler",
"puppeteer",
"serverless",
"lambda",
"chrome-aws-lambda",
"headless"
],
"homepage": "https://github.com/zigante/scrapper",
"license": "ISC",
"author": {
"name": "@zigtech",
"email": "zigante.pedro@gmail.com",
"url": "https://github.com/zigante"
},
"main": "dist/src/index.js",
"repository": "https://github.com/zigante/scrapper",
"scripts": {
"fast-commit": "git add . && git commit -m 'fast commit'",
"dev": "node -r dotenv/config node_modules\\ts-node\\dist\\bin.js src\\dev.ts",
"install-packages": "npm install --unsafe-perm=true",
"prebuild": "rm -rf dist && npm run lint",
"build": "tsc -p .",
"postbuild": "npx tsc-alias",
"lint": "npm run lint:package && npm run lint:project",
"lint:project": "npx eslint --max-warnings 0 --ext .js,.jsx,.ts,.tsx .",
"lint:package": "npx npm-package-json-lint .",
"link-package": "npm run build && npm link"
},
"dependencies": {
"chrome-aws-lambda": "3.1.1",
"core-decorators": "0.20.0",
"dotenv": "8.2.0",
"fs": "0.0.1-security",
"puppeteer": "3.3.0",
"uuid": "8.3.0"
},
"devDependencies": {
"@types/node": "12.12.53",
"@types/puppeteer": "3.0.1",
"@types/uuid": "8.0.0",
"@typescript-eslint/eslint-plugin": "3.7.1",
"@typescript-eslint/parser": "3.7.1",
"eslint": "7.5.0",
"eslint-plugin-prettier": "3.1.4",
"husky": "4.2.5",
"prettier": "2.0.5",
"ts-node": "8.10.2",
"tsconfig-paths": "3.9.0",
"typescript": "3.9.7"
}
}