-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 669 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 669 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "vl-mapd-demo",
"version": "1.0.0",
"main": "index.ts",
"license": "MIT",
"scripts": {
"start": "parcel index.html",
"clean": "rm -rf dist && rm -rf .cache && rm -rf build",
"build:demos": "parcel build --public-url '/vega-lite-transforms2sql/' index.html",
"deploy:demos": "npm run clean && npm run build:demos && gh-pages -d dist"
},
"devDependencies": {
"parcel-bundler": "^1.9.7",
"typescript": "^3.0.3"
},
"dependencies": {
"@mapd/connector": "^4.0.1",
"gh-pages": "^1.2.0",
"vega-embed": "^3.20.0",
"vega-expression": "^2.3.1",
"vega-lite": "^3.0.0-rc6",
"vega-typings": "^0.3.45"
}
}