-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.13 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
{
"name": "vizhub3",
"version": "1.0.0",
"description": "The proprietary VizHub SaaS product codebase.",
"main": "index.js",
"scripts": {
"upgrade": "npm exec --workspaces -- ncu -u",
"prettier": "npm run --workspaces -- prettier",
"test": "npm run --workspaces -- test",
"tsc": "npm run --workspaces -- tsc",
"precommit": "npm run prettier; npm run test; npm run tsc",
"build": "cd app; npm run build",
"serve": "cd app; npm run serve",
"dev": "cd app; npm run dev",
"finalize": "npm run upgrade; npm install; npm run prettier; npm run test; npm run tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vizhub-core/vizhub3.git"
},
"author": "Curran Kelleher, Datavis Tech INC.",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/vizhub-core/vizhub3/issues"
},
"homepage": "https://github.com/vizhub-core/vizhub3#readme",
"workspaces": [
"runtime",
"entities",
"viz-types",
"api",
"app",
"components",
"database",
"demo",
"gateways",
"interactors",
"migration",
"migration2",
"migration3",
"ot"
]
}