-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.67 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
55
56
{
"name": "poabus",
"version": "1.0.0",
"description": "A bus route visualisation for Porto Alegre's public transportation system",
"type": "module",
"scripts": {
"watch": "parcel watch index.html -d tmp --no-hmr --no-autoinstall",
"serve": "serve -l 8888 tmp/",
"start": "npm-run-all --parallel watch serve",
"build": "parcel build index.html",
"postbuild": "cp favicon.ico dist",
"data:generate": "node scripts/fetchData.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rafaelaudibert/poabus.git"
},
"author": "Rafael Audibert <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/rafaelaudibert/poabus/issues"
},
"homepage": "https://github.com/rafaelaudibert/poabus#readme",
"dependencies": {
"@deck.gl/core": "^8.5.4",
"@deck.gl/layers": "^8.5.4",
"@deck.gl/mapbox": "^8.5.4",
"@turf/circle": "^6.5.0",
"babel-preset-env": "^1.7.0",
"cli-progress": "^3.9.0",
"lscache": "^1.3.0",
"node-fetch": "^2.6.7",
"p-queue": "^7.1.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.15.0",
"@babel/plugin-syntax-top-level-await": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.2",
"babel-polyfill": "^6.26.0",
"eslint": "^7.32.0",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.9.4",
"parcel-plugin-json-url-loader": "^0.1.2",
"serve": "^12.0.0"
},
"browserslist": [
"last 3 and_chr versions",
"last 3 chrome versions",
"last 3 opera versions",
"last 3 ios_saf versions",
"last 3 safari versions"
]
}