forked from montera82/Instagram-Scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 784 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
32
{
"name": "soccer-scraper",
"version": "1.0.0",
"description": "A soccer Scraper",
"main": "index.js",
"scripts": {
"build": "tsc --outDir dist",
"start": "node -r dotenv/config dist/index.js",
"start-ts": "ts-node src/index.ts",
"test": "jest",
"lint": "eslint . -c .eslintrc.js --ext .ts,.tsx"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^8.2.0",
"puppeteer": "^5.5.0",
"fast-csv": "^4.3.6",
"fp-ts": "^2.11.1",
"io-ts": "^2.2.16"
},
"devDependencies": {
"@pagopa/eslint-config": "^1.3.1",
"@types/jest": "^26.0.19",
"@types/puppeteer": "^5.4.2",
"jest": "^26.6.3",
"typescript": "^4.3.5",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^1.12.1"
}
}