-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.48 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
46
47
48
49
50
51
52
53
54
{
"name": "nyc-doffer",
"version": "1.0.0",
"description": "Experiments with scraping the NYC DOF website.",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "tsc && parcel build static/index.html",
"watch": "concurrently --kill-others \"tsc --watch --preserveWatchOutput\" \"parcel watch static/index.html\"",
"test": "mocha",
"test:watch": "mocha --watch"
},
"browserslist": [
"last 2 Chrome versions"
],
"devDependencies": {
"@types/chai": "^4.2.3",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"concurrently": "^4.1.2",
"mocha": "^6.2.0"
},
"dependencies": {
"@aws-sdk/client-s3-node": "^0.1.0-preview.6",
"@types/cheerio": "^0.22.13",
"@types/docopt": "^0.6.31",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.1",
"@types/mime": "^2.0.1",
"@types/pg-query-stream": "^1.0.3",
"@types/progress": "^2.0.3",
"@types/puppeteer": "^1.19.1",
"@types/request-promise-native": "^1.0.17",
"@types/tmp": "^0.1.0",
"@types/ws": "^6.0.3",
"cheerio": "^1.0.0-rc.3",
"docopt": "^0.6.2",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"mime": "^2.4.4",
"parcel-bundler": "^1.12.3",
"pg": "^8.3.2",
"pg-promise": "^10.5.8",
"pg-query-stream": "^3.2.2",
"preact": "^8.5.2",
"progress": "^2.0.3",
"puppeteer": "^1.20.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.8",
"tmp": "^0.1.0",
"typescript": "3.7.2",
"ws": "^7.4.6"
}
}