-
Notifications
You must be signed in to change notification settings - Fork 337
/
package.json
55 lines (55 loc) · 1.56 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
{
"name": "rath",
"private": true,
"version": "1.1.0",
"description": "![](https://img.shields.io/github/license/Kanaries/Rath)",
"scripts": {
"build:utils": "yarn workspace @kanaries/rath-utils build",
"build:scenegraph": "yarn workspace vega-scenegraph build",
"build:renderer": "yarn workspace vega-painter-renderer build",
"build:client": "yarn workspace rath-client build",
"build": "npm run build:utils && npm run build:scenegraph && npm run build:renderer && npm run build:client",
"test": "yarn workspace rath-client test",
"ui": "npm run test && npm run build && node start.js",
"devfront": "yarn workspace rath-client start",
"devback": "yarn workspace backend dev",
"count": "cloc --exclude-dir=$(tr '\n' ',' < .clocignore) ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kanaries/Rath.git"
},
"keywords": [
"insights",
"visualization",
"data analysis"
],
"author": "Observed Observer",
"bugs": {
"url": "https://github.com/Kanaries/Rath/issues"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"*/webpack-dev-server",
"*/webpack-cli",
"**/vega",
"**/vega-lite",
"**/vega-embed",
"**/visual-insights"
]
},
"resolutions": {
"@types/react": "^17.x",
"@types/react-dom": "^17.x",
"vega-scenegraph": "4.10.1-kanaries-patch"
},
"homepage": "https://github.com/Kanaries/Rath#readme",
"devDependencies": {
"concurrently": "^4.1.2",
"yarn": "^1.19.0"
},
"dependencies": {}
}