forked from foldaway/sg-scraper
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.29 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
{
"name": "toxic-plant-list-scraper",
"version": "1.0.0",
"main": "main.js",
"repository": "[email protected]:fourthclasshonours/toxic-plant-list-scraper.git",
"author": "Chester How <[email protected]>",
"license": "MIT",
"scripts": {
"scrape": "node dist/scraper.js",
"dev:scrape": "ts-node src/scraper.ts",
"build": "tsc -p tsconfig.production.json --outDir dist",
"clean": "rm -Rf dist/**",
"start": "ts-node src/server.ts"
},
"dependencies": {
"@sentry/node": "^5.20.1",
"@types/geojson": "^7946.0.7",
"axios": "^0.21.1",
"bluebird": "^3.7.2",
"lodash": "^4.17.19",
"moment": "^2.29.1",
"moment-timezone": "^0.5.33",
"pg": "^8.0.2",
"pg-hstore": "^2.3.3",
"puppeteer": "^11.0.0",
"ts-polyfill": "^3.8.2"
},
"devDependencies": {
"@types/bluebird": "^3.5.32",
"@types/lodash": "^4.14.159",
"@types/node": "^14.0.6",
"@types/puppeteer": "^3.0.1",
"@types/validator": "^13.0.0",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"eslint": "^5.16.0 || ^6.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "^2.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.9.3"
}
}