-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 1.19 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
{
"name": "sg-scraper",
"version": "1.0.0",
"main": "main.js",
"repository": "[email protected]:bottleneckco/sg-scraper.git",
"author": "Duncan Leo <[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 && cp -R src/templates dist/",
"clean": "rm -Rf dist/**",
"start": "ts-node src/server.ts"
},
"dependencies": {
"@sentry/node": "^5.20.1",
"axios": "^1.7.4",
"bluebird": "^3.7.2",
"lodash": "^4.17.19",
"moment": "^2.29.4",
"moment-timezone": "^0.5.35",
"pug": "^3.0.3",
"puppeteer": "^21.5.1"
},
"devDependencies": {
"@types/bluebird": "^3.5.32",
"@types/geojson": "^7946.0.14",
"@types/lodash": "^4.14.159",
"@types/node": "^14.0.6",
"@types/pug": "^2.0.6",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^9.0.0",
"prettier": "^2.8.3",
"ts-node": "^8.10.2",
"typescript": "^4.9.4"
}
}