forked from uwdata/mosaic
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.09 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
{
"private": true,
"name": "mosaic",
"description": "Scalable and extensible linked data views.",
"license": "BSD-3-Clause",
"author": "Jeffrey Heer (http://idl.cs.washington.edu)",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/uwdata/mosaic.git"
},
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:examples": "node bin/prepare-examples.js",
"docs:preview": "vitepress preview docs",
"build": "lerna run build",
"lint": "lerna run lint",
"test": "lerna run test",
"server": "nodemon packages/duckdb/bin/run-server.js",
"dev": "vite",
"release": "npm run test && npm run lint && lerna publish"
},
"devDependencies": {
"esbuild": "^0.18.17",
"eslint": "^8.46.0",
"lerna": "^7.1.4",
"mocha": "^10.2.0",
"nodemon": "^3.0.1",
"rimraf": "^5.0.1",
"timezone-mock": "^1.3.6",
"typescript": "^5.1.6",
"vite": "^4.4.8",
"vitepress": "^1.0.0-beta.7",
"yaml": "^2.3.1",
"@uwdata/vgplot": "^0.3.3"
},
"workspaces": [
"packages/*"
]
}