-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
72 lines (72 loc) · 2.62 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "falcon-vis",
"version": "0.16.2",
"description": "Big data crossfilter",
"scripts": {
"start:flights": "parcel flights/index.html",
"start:flights-mapd": "parcel flights-mapd/index.html",
"start:flights-duckdb": "parcel flights-duckdb/index.html --https",
"start:flights-http": "parcel flights-http/index.html",
"start:weather": "parcel weather/index.html",
"start:gaia-mapd": "parcel gaia-mapd/index.html",
"start": "yarn start:flights",
"clean": "rm -rf dist && rm -rf .parcel-cache",
"build": "parcel build --public-url '/falcon/' flights/index.html flights-duckdb/index.html weather/index.html --detailed-report && yarn build:flights-mapd",
"build:flights-mapd": "parcel build --public-url '/falcon/flights-mapd/' flights-mapd/index.html --no-optimize --detailed-report --dist-dir 'dist/flights-mapd'",
"deploy": "yarn clean && yarn build && gh-pages -d dist",
"jest": "NODE_OPTIONS=--experimental-vm-modules npx jest",
"test": "yarn jest",
"prettierbase": "prettier '{src,test}/**/*.{ts,html,scss}'",
"format": "yarn prettierbase --write",
"lint": "yarn prettierbase --check",
"preversion": "yarn lint && yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uwdata/falcon.git"
},
"author": "Dominik Moritz",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/uwdata/falcon/issues"
},
"homepage": "https://github.com/uwdata/falcon#readme",
"dependencies": {
"@duckdb/duckdb-wasm": "^1.20.0",
"@heavyai/connector": "^7.0.0",
"apache-arrow": "^18.0.0",
"cwise": "^1.0.10",
"d3": "^7.8.5",
"ndarray": "^1.0.19",
"ndarray-imshow": "git+https://github.com/domoritz/ndarray-imshow.git",
"ndarray-linear-interpolate": "^1.0.0",
"ndarray-ops": "^1.2.2",
"ndarray-prefix-sum": "^1.0.0",
"vega": "^5.22.1"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-typescript": "^7.23.3",
"@babel/runtime": "^7.23.9",
"@parcel/config-default": "^2.11.0",
"@parcel/core": "^2.11.0",
"@parcel/transformer-raw": "^2.11.0",
"@parcel/transformer-sass": "^2.11.0",
"@types/cwise": "^1.0.6",
"@types/d3": "^7.4.3",
"@types/jest": "^28.1.7",
"@types/ndarray": "1.0.14",
"@types/ndarray-ops": "^1.2.7",
"babel-preset-env": "^1.7.0",
"buffer": "^6.0.3",
"gh-pages": "^6.1.1",
"jest": "^28.1.3",
"node-sass": "^8.0.0",
"parcel": "2.11.0",
"prettier": "^3.2.4",
"process": "^0.11.10",
"ts-jest": "^28.0.8",
"typescript": "^5.0.4"
},
"browserslist": "last 2 Chrome versions, last 2 Firefox versions"
}