-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.17 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
{
"name": "scraper",
"version": "1.0.0",
"description": "",
"default": "./src/index.html",
"scripts": {
"start": "parcel serve ./src/index.html --open",
"build": "parcel build --dist-dir dist src/index.html",
"clean": "rm -rf .parcel-cache dist",
"scrape": "node scripts/testingsites_collect.js",
"ci-deploy": "npm-run-all -s scrape build"
},
"parcelIgnore": [
"/data/centers.geojson",
"static/data/*"
],
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"autoprefixer": "^10.4.7",
"axios": "^0.24.0",
"cheerio": "^1.0.0-rc.10",
"cli-progress": "^3.11.0",
"csvtojson": "^2.0.10",
"dotenv": "^10.0.0",
"geojson": "^0.5.0",
"mapbox-gl": "^2.8.2",
"node-geocoder": "^4.0.0",
"nominatim-client": "^3.2.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.5",
"pretty": "^2.0.0"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"parcel": "^2.5.0",
"parcel-reporter-static-files-copy": "^1.3.4",
"parcel-resolver-ignore": "^2.1.1",
"postcss-import": "^14.1.0",
"pretty": "^2.0.0",
"process": "^0.11.10",
"tailwindcss": "^3.0.24"
}
}