-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.8 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
{
"name": "florida-scrapers",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:freelawproject/florida-scrapers.git",
"author": "Nick Sethi <[email protected]>",
"license": "MIT",
"devDependencies": {
"async-csv": "^2.1.3",
"@types/async-csv": "^2.1.0",
"@types/jsdom": "^16.2.11",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"babel-eslint": "^10.1.0",
"cross-fetch": "^3.1.4",
"date-fns": "^2.22.1",
"dotenv": "^10.0.0",
"eslint": "^7.28.0",
"jsdom": "^16.6.0",
"nodemon": "^2.0.7",
"prettier": "^2.3.1",
"puppeteer": "^10.0.0",
"puppeteer-extra": "^3.1.18",
"puppeteer-extra-plugin-devtools": "^2.2.17",
"puppeteer-extra-plugin-stealth": "^2.7.8",
"puppeteer-extra-plugin-user-data-dir": "^2.2.12",
"puppeteer-extra-plugin-user-preferences": "^2.2.12",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
},
"scripts": {
"search:stjohns": "ts-node --require dotenv/config src/stjohns/index.ts",
"process:stjohns": "ts-node --require dotenv/config src/stjohns/process.ts",
"download:stjohns": "ts-node --require dotenv/config src/stjohns/download.ts",
"search:stlucie": "ts-node --require dotenv/config src/stlucie/index.ts",
"process:stlucie": "ts-node --require dotenv/config src/stlucie/process.ts",
"download:stlucie": "ts-node --require dotenv/config src/stlucie/download.ts",
"search:osceola": "ts-node --require dotenv/config src/osceola/index.ts",
"process:osceola": "ts-node --require dotenv/config src/osceola/process.ts",
"download:osceola": "ts-node --require dotenv/config src/osceola/download.ts",
"start": "ts-node --require dotenv/config src/index.ts",
"lint": "eslint src/**/*.ts",
"format": "eslint src/**/*.ts --fix"
}
}